
deb.control.prerm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmemcached-cli Show documentation
Show all versions of jmemcached-cli Show documentation
Command line front end interface to the cache daemon.
The newest version!
#!/bin/sh
#
# Pre removal scriptix
#
set -e
# stop the server
if [ -x "/etc/init.d/jmemcached" ]; then
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d jmemcached stop || exit $?
else
/etc/init.d/jmemcached stop || exit $?
fi
fi
exit 0
© 2015 - 2025 Weber Informatics LLC | Privacy Policy