summaryrefslogtreecommitdiffstats
path: root/target/device/valka/target_skeleton/etc/rc.shutdown
blob: f6f110824989580161192f1e8c5d47ffe9b08976 (plain) (blame)
1
2
3
4
5
6
7
#!/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