summaryrefslogtreecommitdiffstats
path: root/extras/Solaris/preremove
blob: 503b428177c08db4e98948fe255a3c0172bf445e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# If this is a local deinstall, stop glusterfs
if [ -z "$PKG_INSTALL_ROOT" ]
then
	DAEMON=`ps -e -o pid,comm | grep glusterfsd | awk '{print $1}'`
	[ ! -z "$DAEMON" ] && kill -TERM $SMBD
	sleep 2
fi