diff options
author | Bill Nottingham <notting@redhat.com> | 1999-11-08 20:25:41 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-11-08 20:25:41 +0000 |
commit | 945174a05c48620a6e2f43b7abfe4e89cec3ec08 (patch) | |
tree | 080acab878efb707def0dd4c13c1fea586a5dfb9 | |
parent | debd2336c10eb68d8e165245f48102ded43c7867 (diff) | |
download | initscripts-945174a05c48620a6e2f43b7abfe4e89cec3ec08.tar initscripts-945174a05c48620a6e2f43b7abfe4e89cec3ec08.tar.gz initscripts-945174a05c48620a6e2f43b7abfe4e89cec3ec08.tar.bz2 initscripts-945174a05c48620a6e2f43b7abfe4e89cec3ec08.tar.xz initscripts-945174a05c48620a6e2f43b7abfe4e89cec3ec08.zip |
*** empty log message ***r4-63
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | initscripts.spec | 1 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +1999-11-08 Bill Nottingham <notting@redhat.com> + + * rc.d/rc, rc.d/rc.sysinit: + use /var/run/confirm for interactive, not /tmp/confirm + 1999-11-08 Michael K. Johnson <johnsonm@redhat.com> * sysconfig/network-scripts/ifup-ppp: diff --git a/initscripts.spec b/initscripts.spec index 40aaf67f..a797115e 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -204,6 +204,7 @@ rm -rf $RPM_BUILD_ROOT bug in ppp-watch - allow DNS{1,2} in any ifcfg-* file, not just PPP, and add nameserver entries, don't just replace them +- don't use /tmp/confirm, use /var/run/confirm instead * Tue Nov 2 1999 Bill Nottingham <notting@redhat.com> - fix lang.csh /tmp race oops diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 8b98678b..5b7cfac8 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -437,7 +437,6 @@ if [ -x /sbin/quotaon ]; then action "Turning on user and group quotas for local filesystems" /sbin/quotaon -a fi -{ # Clean out /etc. rm -f /etc/mtab~ /fastboot /fsckoptions /forcefsck @@ -455,6 +454,7 @@ for afile in /var/lock/* /var/run/*; do fi done +{ # Clean up utmp/wtmp >/var/run/utmp touch /var/log/wtmp |