blob: 2b8bf64c76888f0170a5c83f5c2dc9042ef38e6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- nslu2-linksys-ramdisk-2.3r25/etc/rc.d/rc.reboot.orig 2004-07-27 23:37:55.000000000 -0400
+++ nslu2-linksys-ramdisk-2.3r25/etc/rc.d/rc.reboot 2004-09-01 21:58:19.000000000 -0400
@@ -1,4 +1,9 @@
#!/bin/sh
+
+if ( [ -r /unslung/rc.reboot ] && . /unslung/rc.reboot ) ; then return 0 ; fi
+
+/bin/echo "Stopping UNSLUNG Packages:"; ( . /etc/rc.d/rc.unslung-stop )
+
/bin/killall -2 upnpd 2>/dev/null
sleep 4
/sbin/ifdown ixp0
|