updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / nagios-nsca / nagios-nsca.install
blobda82cddc6f67e2032c9c4b3621f6460489105c5d
1 post_install() {
2   if [ -z "`getent group nsca`" ]; then
3     groupadd -g 32 nsca
4   fi
5   if [ -z "`getent passwd nsca`" ]; then
6     useradd -u 32 -g nsca -c "Nagios NSCA" -d /dev/null -s /bin/false nsca
7   fi
10 post_upgrade() {
11   post_install $1
14 pre_remove() {
15   userdel nsca &> /dev/null
16   groupdel nsca &> /dev/null
19 op=$1
20 shift
22 $op $*