buildroot/target/device/valka/target_skeleton/etc/rc.shutdown

8 lines
123 B
Plaintext
Raw Normal View History

2008-03-06 19:59:14 +01:00
#!/bin/ash
. /etc/rc.subr
echo "Shutting down services..."
for s in $(ls /etc/rc.d | sort -r); do
/etc/rc.d/$s stop
done