stop (239B)
1 #!/bin/sh 2 # vim: set ts=4 sw=4 et: 3 4 PATH=/usr/bin:/usr/sbin 5 6 . /usr/share/fiss/utils 7 8 detect_virt 9 10 [ -r /etc/rc.conf ] && . /etc/rc.conf 11 12 [ -r /etc/rc.shutdown ] && . /etc/rc.shutdown 13 14 for f in /etc/stop.d/*.sh; do 15 [ -r $f ] && . $f 16 done