Displaying 2 results from an estimated 2 matches for "postremov".
Did you mean:
postremove
1998 Oct 05
0
samba-1.9.18p10 - Solaris 2.6, postinstall and postremove scripts
...ervice 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 samba
nawk '/^netbios-[ns]*[ ]/ {next}
{print} ' \
${PKG_INSTALL_ROOT}/etc/inet/services > /tmp/services.$$ && \
mv -f /tmp/services.$$ ${PKG_INSTALL_ROOT}/etc/inet/services &&
\
chmod 644 ${PKG_INSTALL_ROOT}/et...
2004 Apr 30
0
buildpkg.sh enhancements
...el
POST_MAKE_INSTALL_FIXES Name of script to run after "make install"
POST_PROTOTYPE_EDITS Name of script to run after prototype is made
PKG_PREINSTALL_LOCAL Local preinstall additions
PKG_POSTINSTALL_LOCAL Local postinstall additions
PKG_PREREMOVE_LOCAL Local preremove additions
PKG_POSTREMOVE_LOCAL Local postremove additions
PKG_REQUEST_LOCAL Local request additions
I've moved OPENSSHD_IN up so it can be overriden by your config.local
$srcdir is now available to scripts
Start to add support for OpenSerever. (not done yet)
I've always intended for this script to work on any...