diff options
author | phk <phk@FreeBSD.org> | 1997-01-02 18:55:26 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-01-02 18:55:26 +0000 |
commit | 813b0dd9e3682b68aa5a732dc0174eae560883b8 (patch) | |
tree | 033a083b2a69312883f2986bd4559fd1be1e6cb1 /etc | |
parent | 6f84500f3d910e895ca9b6222ec83b9a5df844a8 (diff) | |
download | FreeBSD-src-813b0dd9e3682b68aa5a732dc0174eae560883b8.zip FreeBSD-src-813b0dd9e3682b68aa5a732dc0174eae560883b8.tar.gz |
Put dmesg.boot in /var/run instead of /var/tmp
Suggested by: joerg & peter
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.108 1996/12/23 00:32:15 joerg Exp $ +# $Id: rc,v 1.109 1997/01/02 16:28:33 phk Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -87,7 +87,7 @@ fi adjkerntz -i # Keep a copy of the boot messages around -/sbin/dmesg > /var/tmp/dmesg.boot +/sbin/dmesg > /var/run/dmesg.boot # If there is a global system configuration file, suck it in. if [ -f /etc/sysconfig ]; then |