From 764f5f34fd513c1826cbb517c4971ea48ecf8d18 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sat, 18 Sep 2010 12:50:55 +0000 Subject: [PATCH] Quassel: use the generic logging for jobs instead of rolling your own. svn path=/nixos/trunk/; revision=23854 --- modules/services/networking/quassel.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/services/networking/quassel.nix b/modules/services/networking/quassel.nix index 6793ee39a06..6c8fd9bbd80 100644 --- a/modules/services/networking/quassel.nix +++ b/modules/services/networking/quassel.nix @@ -38,11 +38,6 @@ in ''; }; - logFile = mkOption { - default = "/var/log/quassel.log"; - description = "Location of the logfile of the Quassel daemon."; - }; - dataDir = mkOption { default = ''/home/${cfg.user}/.config/quassel-irc.org''; description = '' @@ -86,7 +81,7 @@ in exec = '' ${pkgs.su}/bin/su -s ${pkgs.stdenv.shell} ${cfg.user} \ -c '${quassel}/bin/quasselcore --listen=${cfg.interface}\ - --port=${toString cfg.portNumber} --configdir=${cfg.dataDir} --logfile=${cfg.logFile}' + --port=${toString cfg.portNumber} --configdir=${cfg.dataDir}' ''; };