1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-12-14 02:40:27 +00:00
ngircd/debian/ngircd.postinst

15 lines
271 B
Plaintext
Raw Permalink Normal View History

2003-07-12 18:48:17 +00:00
#!/bin/sh
2003-07-12 18:29:19 +00:00
#
# Debian post-installation script
# $Id: ngircd.postinst,v 1.1.2.4 2003/11/29 20:29:02 alex Exp $
2003-07-12 18:29:19 +00:00
#
if [ -f /etc/ngircd/ngircd.conf ]; then
2003-07-12 22:57:00 +00:00
# make sure that configuration file is not world readable
chmod o= /etc/ngircd/ngircd.conf
2003-07-12 18:29:19 +00:00
fi
#DEBHELPER#
2003-07-12 18:29:19 +00:00
# -eof-