Weitere packages mit postremove scripten versehen

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_nagios@4791 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2009-06-03 18:30:45 +00:00
parent 9accc54787
commit e6a3af6424

9
tmp/postremove Normal file
View File

@ -0,0 +1,9 @@
#!/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