diff options
-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 |