[BACK]Return to ngircd.postinst CVS log [TXT][DIR] Up to [local] / ircnowd / contrib / Debian

File: [local] / ircnowd / contrib / Debian / ngircd.postinst (download)

Revision 1.1, Thu May 16 11:07:06 2024 UTC (4 months ago) by tomglok
Branch point for: MAIN

Initial revision

#!/bin/sh
#
# Debian post-installation script
#

set -e

case "$1" in
	configure)
		if [ -f /etc/ngircd/ngircd.conf ]; then
			# make sure that the configuration file is not
			# world-readable, it contains passwords!
			chmod o= /etc/ngircd/ngircd.conf
			chgrp irc /etc/ngircd/ngircd.conf
		fi
		;;
esac

#DEBHELPER#

# -eof-