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