Viitor_nagios/tmp/postremove
kueller b205fa0acb Neue Version V963
git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_nagios@5933 504e572c-2e33-0410-9681-be2bf7408885
2011-01-03 10:48:06 +00:00

10 lines
144 B
Bash

#!/bin/bash
if getent group nobody 2>&1 >/dev/null; then
groupdel nobody
fi
if getent passwd nagios 2>&1 >/dev/null; then
userdel nagios
fi