mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 01:40:27 +00:00
Update Debian package
- Update debhelper compatibility to version 9. - Update build-dependencies. - Change group of ngircd.conf to "irc" in postinst script (this makes starting ngIRCd as user "irc" easier, for example when using systemd). - Don't create /var/run/ircd during installation: this is handled by the SysV init script and the systemd service already.
This commit is contained in:
parent
3e44738416
commit
9e0e955daf
@ -1 +1 @@
|
|||||||
4
|
9
|
||||||
|
@ -2,13 +2,13 @@ Source: ngircd
|
|||||||
Section: net
|
Section: net
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Alexander Barton <alex@barton.de>
|
Maintainer: Alexander Barton <alex@barton.de>
|
||||||
Build-Depends: debhelper (>> 4.0.0),
|
Build-Depends: debhelper (>> 9.0.0),
|
||||||
autotools-dev,
|
autotools-dev,
|
||||||
expect,
|
expect,
|
||||||
libz-dev,
|
libz-dev,
|
||||||
libwrap0-dev,
|
libwrap0-dev,
|
||||||
libident-dev,
|
libident-dev,
|
||||||
libgnutls-dev,
|
libgnutls28-dev,
|
||||||
libpam0g-dev,
|
libpam0g-dev,
|
||||||
telnet | telnet-ssl,
|
telnet | telnet-ssl,
|
||||||
Standards-Version: 3.9.1
|
Standards-Version: 3.9.1
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# Debian post-installation script
|
# Debian post-installation script
|
||||||
# $Id: ngircd.postinst,v 1.2 2006/12/26 14:44:40 alex Exp $
|
|
||||||
#
|
#
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
@ -12,6 +11,7 @@ case "$1" in
|
|||||||
# make sure that the configuration file is not
|
# make sure that the configuration file is not
|
||||||
# world-readable, it contains passwords!
|
# world-readable, it contains passwords!
|
||||||
chmod o= /etc/ngircd/ngircd.conf
|
chmod o= /etc/ngircd/ngircd.conf
|
||||||
|
chgrp irc /etc/ngircd/ngircd.conf
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
#
|
#
|
||||||
# ngIRCd -- The Next Generation IRC Daemon
|
# ngIRCd -- The Next Generation IRC Daemon
|
||||||
# Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors
|
# Copyright (c)2001-2016 Alexander Barton (alex@barton.de) and Contributors
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -140,7 +140,6 @@ install-ngircd: build-ngircd
|
|||||||
$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd
|
||||||
rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/INSTALL*
|
rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/INSTALL*
|
||||||
rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING*
|
rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING*
|
||||||
mkdir -p $(CURDIR)/debian/ngircd/var/run/ircd
|
|
||||||
cat $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/sample-ngircd.conf | \
|
cat $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/sample-ngircd.conf | \
|
||||||
sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
|
sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
|
||||||
sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
|
sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
|
||||||
@ -157,7 +156,6 @@ install-ngircd-full: build-ngircd-full
|
|||||||
$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full
|
||||||
rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/INSTALL*
|
rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/INSTALL*
|
||||||
rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/COPYING*
|
rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/COPYING*
|
||||||
mkdir -p $(CURDIR)/debian/ngircd-full/var/run/ircd
|
|
||||||
cat $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/sample-ngircd.conf | \
|
cat $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/sample-ngircd.conf | \
|
||||||
sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
|
sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
|
||||||
sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
|
sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
|
||||||
@ -176,7 +174,6 @@ install-ngircd-full-dbg: build-ngircd-full-dbg
|
|||||||
$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full-dbg
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full-dbg
|
||||||
rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/INSTALL*
|
rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/INSTALL*
|
||||||
rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/COPYING*
|
rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/COPYING*
|
||||||
mkdir -p $(CURDIR)/debian/ngircd-full-dbg/var/run/ircd
|
|
||||||
cat $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/sample-ngircd.conf | \
|
cat $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/sample-ngircd.conf | \
|
||||||
sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
|
sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
|
||||||
sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
|
sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
|
||||||
|
Loading…
Reference in New Issue
Block a user