2003-07-13 01:27:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Debian post-installation script
|
2006-12-26 15:44:40 +01:00
|
|
|
# $Id: ngircd.postinst,v 1.2 2006/12/26 14:44:40 alex Exp $
|
2003-07-13 01:27:37 +02:00
|
|
|
#
|
|
|
|
|
2006-12-26 15:44:40 +01:00
|
|
|
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
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2003-07-13 01:27:37 +02:00
|
|
|
|
2003-11-29 21:29:09 +01:00
|
|
|
#DEBHELPER#
|
2003-07-13 01:27:37 +02:00
|
|
|
|
|
|
|
# -eof-
|