postinst is in syslog-nagios-bridge 1.0.1-4.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/sh
set -e
# user nagios should have been created by the Nagios package
MY_USER=nagios
if ! getent passwd ${MY_USER} >/dev/null;
then
echo "Expecting user $MY_USER to exist already, aborting."
exit 1
fi
ETC_DIR=/etc/nagios3/syslog.d
if [ ! -d ${ETC_DIR} ];
then
mkdir -p ${ETC_DIR}
fi
if [ -d ${ETC_DIR} ];
then
chown ${MY_USER} ${ETC_DIR}
fi
# Automatically added by dh_installinit
if [ -x "/etc/init.d/syslog-nagios-bridge" ]; then
update-rc.d syslog-nagios-bridge defaults >/dev/null
fi
if [ -x "/etc/init.d/syslog-nagios-bridge" ] || [ -e "/etc/init/syslog-nagios-bridge.conf" ]; then
invoke-rc.d syslog-nagios-bridge start || exit $?
fi
# End automatically added section
exit 0
|