diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-03 04:22:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-03 04:22:43 +0000 |
commit | 2fe8dec400bbd731a59e8575c1d58bc22aca15f9 (patch) | |
tree | cb86e570421741e3550969cdddb59e9706f268ad /etc | |
parent | f89c4fe4fd7fa106ed1b61363f778c26dbcb84ee (diff) |
silence the chmod
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.116 1999/09/30 13:10:20 deraadt Exp $ +# $OpenBSD: rc,v 1.117 1999/10/03 04:22:42 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. @@ -97,7 +97,7 @@ ttyflags -a if [ ! -f /var/db/host.random ]; then dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 \ >/dev/null 2>&1 - chmod 600 /var/db/host.random + chmod 600 /var/db/host.random >/dev/null 2>&1 else dd if=/var/db/host.random of=/dev/urandom bs=1024 count=64 \ > /dev/null 2>&1 |