22 lines
328 B
Bash
Executable File
22 lines
328 B
Bash
Executable File
#!/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-
|