[BACK]Return to rc.shutdown CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/rc.shutdown, Revision 1.2

1.2     ! provos      1: #      $OpenBSD: rc.shutdown,v 1.1 1999/07/06 07:55:03 deraadt Exp $
1.1       deraadt     2: #
                      3: # If it exists, this script is run at system-shutdown by reboot(8),
                      4: # halt(8).
                      5: # If the architecture supports keyboard requested halting, it is also
                      6: # run by init(8) when such an event happens.
                      7: #
                      8:
                      9: echo -n /etc/rc.shutdown in progress...
1.2     ! provos     10:
        !            11: # save part of our entropy pool for reuse on reboot
        !            12: dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 >/dev/null 2>&1
        !            13: chmod 600 /var/db/host.random
1.1       deraadt    14:
                     15: #
                     16: # Your shell code goes here
                     17: #
                     18:
                     19:
                     20: echo done.
                     21: exit 0         # An exit code of 2 will cause init(8) to attempt powerdown.