about summary refs log tree commit diff
path: root/contrib/Debian/rules
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-10-20 18:32:50 +0200
committerAlexander Barton <alex@barton.de>2013-10-20 18:33:22 +0200
commit8a041373bb81f75a91a00e692979619938199989 (patch)
tree6e4a7774e091fe4ff613bf5cb2a4a641a5cb834f /contrib/Debian/rules
parent37c8699f3403f8d45c1cfb1679be4248cfb1e726 (diff)
downloadngircd-8a041373bb81f75a91a00e692979619938199989.tar.gz
ngircd-8a041373bb81f75a91a00e692979619938199989.zip
Debian: Fix sed(1) rules adjusting "ngircd-full" package
Error introduced by last commit :-/
Diffstat (limited to 'contrib/Debian/rules')
-rwxr-xr-xcontrib/Debian/rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/Debian/rules b/contrib/Debian/rules
index c824db09..4df0609c 100755
--- a/contrib/Debian/rules
+++ b/contrib/Debian/rules
@@ -159,8 +159,8 @@ install-ngircd-full: build-ngircd-full
 	 $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full
 	mkdir -p $(CURDIR)/debian/ngircd-full/var/run/ircd
 	cat $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/sample-ngircd.conf | \
-	 sed -e "s|;ServerUID = 65534/ServerUID = irc/g" | \
-	 sed -e "s|;ServerGID = 65534/ServerGID = irc/g" | \
+	 sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
+	 sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
 	 sed -e "s|;MotdFile = /usr/local/etc/ngircd.motd|MotdFile = /etc/ngircd/ngircd.motd|g" | \
 	 sed -e "s|;HelpFile = /usr/share/doc/ngircd/Commands.txt|HelpFile = /usr/share/doc/ngircd-full/Commands.txt|g" | \
 	 sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \