diff options
-rw-r--r-- | initscripts.spec | 8 | ||||
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/initscripts.spec b/initscripts.spec index e3496c91..08de49a8 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: The inittab file and the /etc/init.d scripts Name: initscripts -Version: 8.65 +Version: 8.67 # ppp-watch is GPLv2+, everything else is GPLv2 License: GPLv2 and GPLv2+ Group: System Environment/Base @@ -216,6 +216,12 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0664,root,utmp) /var/run/utmp %changelog +* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.67-1 +- actually, don't + +* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.66-1 +- use upstart to start rhgb (#433156, <cdahlin@ncsu.edu>) + * Mon Mar 10 2008 Bill Nottingham <notting@redhat.com> - 8.65-1 - Add a serial console udev/upstart handler (#434764, indirectly) - Add some upstart notification for sysv scripts (modified from <cjdahlin@ncsu.edu>, #431231) diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index aef89709..cfe9264c 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -112,7 +112,7 @@ case "$1" in fi [ -n "$SMBMTAB" ] && action $"Unmounting SMB filesystems: " umount -a -t smbfs [ -n "$CIFSMTAB" ] && action $"Unmounting CIFS filesystems: " umount -a -t cifs - [ -n "$NCPMTAB" ] && action $"Unmounting NCP filesystems: " umount -a -t ncpfs + [ -n "$NCPMTAB" ] && action $"Unmounting NCP filesystems: " umount -a -t ncp,ncpfs rm -f /var/lock/subsys/netfs ;; status) |