jeffk l33t
Joined: 13 Sep 2003 Posts: 671
|
Posted: Sun Apr 27, 2008 4:01 pm Post subject: recent update removed /etc/init.d/net.eth0 symlink |
|
|
Anyone updating an offsite server use caution, as I had two servers get their /etc/init.d/net.eth0 -> net.lo symlink wiped out, and the machines were sadly unreachable/offline when rebooted.
Code: | # ls -al /etc/init.d/net*
lrwxrwxrwx 1 root root 18 Apr 26 17:54 /etc/init.d/net.lo -> //lib/rc/sh/net.sh
-rwxr-xr-x 1 root root 2060 Apr 26 17:53 /etc/init.d/netmount |
Code: | init.d # ln -s net.lo net.eth0 |
Code: | # ls -al /etc/init.d/net*
lrwxrwxrwx 1 root root 6 Apr 27 11:55 /etc/init.d/net.eth0 -> net.lo
lrwxrwxrwx 1 root root 18 Apr 26 17:54 /etc/init.d/net.lo -> //lib/rc/sh/net.sh
-rwxr-xr-x 1 root root 2060 Apr 26 17:53 /etc/init.d/netmount |
|
|