Fix prayer so it does not start a server at port 80.
svn path=/nixos/trunk/; revision=34420
This commit is contained in:
parent
78333e5d84
commit
9b833aafb9
@ -26,7 +26,9 @@ let
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
prayerCfg = pkgs.runCommand "prayer.cf" { } ''
|
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
|
in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user