1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

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)
This commit is contained in:
John Terpstra 1998-10-29 10:17:00 +00:00
parent 6f06a2393a
commit 0129c460fc
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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