From 0129c460fc720daa9c5071a5fe9691262297b4c8 Mon Sep 17 00:00:00 2001 From: John Terpstra Date: Thu, 29 Oct 1998 10:17:00 +0000 Subject: Fixed spec file entry that was causing the CDRom installer to generate a message claiming that package installation had failed when it really did work. The error was caused by the killall command being used where there is no /proc for it to work on. (This used to be commit 7eaf47853ea2f48702847c81a9ec7cd351a3079b) --- packaging/RedHat/samba2.spec.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packaging/RedHat/samba2.spec.tmpl') diff --git a/packaging/RedHat/samba2.spec.tmpl b/packaging/RedHat/samba2.spec.tmpl index a9370ae4ab..3693d22cca 100644 --- a/packaging/RedHat/samba2.spec.tmpl +++ b/packaging/RedHat/samba2.spec.tmpl @@ -195,7 +195,7 @@ fi # Add swat entry to /etc/inetd.conf if needed if !( grep ^[:space:]*swat /etc/inetd.conf > /dev/null ) then echo 'swat stream tcp nowait.400 root /usr/sbin/swat swat' >> /etc/inetd.conf -killall -1 inetd +killall -1 inetd || : fi %preun -- cgit