Viitor_nsca/tmp/postinstall

16 lines
359 B
Plaintext
Raw Normal View History

#!/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 nsca /etc/services || echo >>/etc/services "nsca 5667/tcp # NSCA"