The Following 11 Users Say Thank You to qwerty12 For This Useful Post: | ||
![]() |
2008-07-05
, 17:25
|
|
Posts: 221 |
Thanked: 182 times |
Joined on Jul 2007
@ Central Illinois
|
#2
|
![]() |
2008-07-05
, 17:42
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#3
|
![]() |
2008-07-05
, 18:04
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#4
|
The Following User Says Thank You to Bundyo For This Useful Post: | ||
![]() |
2008-07-05
, 18:08
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#5
|
![]() |
2008-07-05
, 21:51
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#6
|
![]() |
2008-07-07
, 12:05
|
Posts: 6 |
Thanked: 27 times |
Joined on Jul 2008
|
#7
|
doexit= while test $# -gt 0 ; do if test ! -L "$1" ; then printerror not a symlink: $1 doexit=102 fi if test ! -f "$1" ; then printerror dangling symlink: $1 doexit=102 fi shift done
doexit= while test $# -gt 0 ; do f=`eval "echo $1"` if test ! -L "$f" ; then printerror not a symlink: $1 doexit=102 fi if test ! -f "$f" ; then printerror dangling symlink: $1 doexit=102 fi shift done
The Following 16 Users Say Thank You to reiv For This Useful Post: | ||
invoke-rc.d: not a symlink: "/etc/rc2.d/S20ssh"
invoke-rc.d: dangling symlink: "/etc/rc2.d/S20ssh"
Usually, when that happened to me, I'd wait for application manager to say unable to install and I'd close it down and I'd open a root xterm and type apt-get -f install and move the file in mention and run apt-get install and move it back. But then I realised that invoke-rc.d is a script and I should remove those p**** lines that mess up everything else. So I did.
Edit /usr/sbin/invoke-rc.d
Replace this:
If this proves to be useful for people, I'll repack the mini-rc to have this mod in it as a deb.
Last edited by qwerty12; 2008-07-05 at 18:09. Reason: Thanks Bundyo