mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-13 10:20:28 +00:00
15 lines
267 B
Bash
15 lines
267 B
Bash
#!/bin/sh
|
|
#
|
|
# Debian post-installation script
|
|
# $Id: ngircd.postinst,v 1.3 2003/11/29 20:29:09 alex Exp $
|
|
#
|
|
|
|
if [ -f /etc/ngircd/ngircd.conf ]; then
|
|
# make sure that configuration file is not world readable
|
|
chmod o= /etc/ngircd/ngircd.conf
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
# -eof-
|