V961 Tree Umbau

git-svn-id: svn://svn.compuextreme.de/Viitor/V961/Viitor_nrpe@4286 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2008-05-03 16:58:59 +00:00
commit 775ad7fc86

16
tmp/postinstall Normal file
View File

@ -0,0 +1,16 @@
#!/bin/bash
if ! getent group nobody >/dev/null; then
groupadd -g 65534 nobody >/dev/null 2>/dev/null
fi
if ! getent group nagios >/dev/null; then
groupadd -g 28 nagios
fi
if ! getent passwd nagios >/dev/null; then
useradd -u 51 -g nagios -d /tmp nagios
fi
grep -q nrpe /etc/services || echo >>/etc/services "nrpe 5666/tcp # NRPE"