Blob


1 #!/bin/sh
2 #
3 # Debian post-installation script
4 # $Id: ngircd.postinst,v 1.2 2006/12/26 14:44:40 alex Exp $
5 #
7 set -e
9 case "$1" in
10 configure)
11 if [ -f /etc/ngircd/ngircd.conf ]; then
12 # make sure that the configuration file is not
13 # world-readable, it contains passwords!
14 chmod o= /etc/ngircd/ngircd.conf
15 fi
16 ;;
17 esac
19 #DEBHELPER#
21 # -eof-