diff options
| author | Alexander Barton <alex@barton.de> | 2024-01-19 22:07:38 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2024-01-20 16:43:54 +0100 |
| commit | 47f9c6d0a0085da2fbcbdae0a9736b79a98cc527 (patch) | |
| tree | 7b78e62494a00cababe3b6cdb1d80f7fa3976f2f /contrib/Debian/ngircd.postinst | |
| parent | c65c3435e3107846a1995aea166e8241595fffa4 (diff) | |
| download | ngircd-47f9c6d0a0085da2fbcbdae0a9736b79a98cc527.tar.gz ngircd-47f9c6d0a0085da2fbcbdae0a9736b79a98cc527.zip | |
Update included Debian package configuration
- Rewrite using current dh_make. - Standards-Version: 4.6.2. - No longer build 3 different packages; only build "ngircd" which now includes support for IDENT, PAM (disabled in the ngircd.conf installed by the package), SSL (OpenSSL), ZLib and IPv6. - Update package description accordingly. - No longer install a SysV init file, only install ngircd.service unit.
Diffstat (limited to 'contrib/Debian/ngircd.postinst')
| -rwxr-xr-x | contrib/Debian/ngircd.postinst | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/contrib/Debian/ngircd.postinst b/contrib/Debian/ngircd.postinst deleted file mode 100755 index f6e3c4f7..00000000 --- a/contrib/Debian/ngircd.postinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/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- |