about summary refs log tree commit diff
path: root/contrib/Debian/ngircd.postinst
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2003-12-31 17:20:11 +0000
committerAlexander Barton <alex@barton.de>2003-12-31 17:20:11 +0000
commited94d5d5cd31ecc1f671f36e0813804e8aa59082 (patch)
treed54a96bd11cf4ce31fbf695ed98a3f2183e75fa5 /contrib/Debian/ngircd.postinst
parentea076a28f2ff16c0424c0ba488227dbe1d3393bf (diff)
downloadngircd-ed94d5d5cd31ecc1f671f36e0813804e8aa59082.tar.gz
ngircd-ed94d5d5cd31ecc1f671f36e0813804e8aa59082.zip
Removed outdated Mac OS X ProjectBuilder project files (will be re-added
and updated for XCode soon); moved the debian/ directory to contrib/Debian/.
Diffstat (limited to 'contrib/Debian/ngircd.postinst')
-rwxr-xr-xcontrib/Debian/ngircd.postinst14
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/Debian/ngircd.postinst b/contrib/Debian/ngircd.postinst
new file mode 100755
index 00000000..b2ae4053
--- /dev/null
+++ b/contrib/Debian/ngircd.postinst
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# Debian post-installation script
+# $Id: ngircd.postinst,v 1.1 2003/12/31 17:20:11 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-