Displaying 1 result from an estimated 1 matches for "inetpid".
Did you mean:
inetd
1998 Oct 05
0
samba-1.9.18p10 - Solaris 2.6, postinstall and postremove scripts
...mv -f /tmp/inetd.conf.$$ ${PKG_INSTALL_ROOT}/etc/inet/inetd.conf
&& \
chmod 644 ${PKG_INSTALL_ROOT}/etc/inet/inetd.conf && \
echo "Updated ${PKG_INSTALL_ROOT}/etc/inet/inetd.conf"
echo "Installed samba service into ${PKG_INSTALL_ROOT:-/}"
inetpid=`/bin/ps -ef | awk '/ \/usr\/sbin\/inetd / { print $2 } '`
if [ "X$inetpid" = "X" ]; then
echo "inetd not running"
else
echo "Restarting inetd($inetpid)"
kill -HUP $inetpid
fi
::::::::::::::
postremove
::::::::::::::
#!/bin/sh
# remove samb...