diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-20 16:51:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-20 16:51:05 +0000 |
commit | 14acd83186d53c9dfe4a583a4e184bf079d6edec (patch) | |
tree | e558208075da2e76ed8eaeae6a99470633116e15 /etc/rc.shutdown | |
parent | 1fa00204bb75f9097e8b96f5573758de89463f91 (diff) |
do not use -n with user-edited section between
Diffstat (limited to 'etc/rc.shutdown')
-rw-r--r-- | etc/rc.shutdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown index 2df5f496a33..4431d357aaa 100644 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -1,4 +1,4 @@ -# $OpenBSD: rc.shutdown,v 1.2 1999/07/15 14:31:52 provos Exp $ +# $OpenBSD: rc.shutdown,v 1.3 1999/07/20 16:51:04 deraadt Exp $ # # If it exists, this script is run at system-shutdown by reboot(8), # halt(8). @@ -6,7 +6,7 @@ # run by init(8) when such an event happens. # -echo -n /etc/rc.shutdown in progress... +echo /etc/rc.shutdown in progress... # save part of our entropy pool for reuse on reboot dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 >/dev/null 2>&1 @@ -17,5 +17,5 @@ chmod 600 /var/db/host.random # -echo done. +echo shutdown complete. exit 0 # An exit code of 2 will cause init(8) to attempt powerdown. |