Fix prayer so it does not start a server at port 80.

svn path=/nixos/trunk/; revision=34420
This commit is contained in:
Lluís Batlle i Rossell 2012-06-10 14:51:43 +00:00
parent 78333e5d84
commit 9b833aafb9

View File

@ -26,7 +26,9 @@ let
'';
prayerCfg = pkgs.runCommand "prayer.cf" { } ''
cat ${prayer}/etc/prayer.cf ${prayerExtraCfg} > $out
# We have to remove the http_port 80, or it will start a server there
cat ${prayer}/etc/prayer.cf | grep -v http_port > $out
cat ${prayerExtraCfg} >> $out
'';
in