tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/git-daemon: fix 'exportAll' option
Nikolay Amiantov
11 years ago
46b866cf
af1d0987
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
git-daemon.nix
+1
-1
nixos/modules/services/networking/git-daemon.nix
···
122
122
+ (optionalString (cfg.basePath != "") "--base-path=${cfg.basePath} ")
123
123
+ (optionalString (cfg.listenAddress != "") "--listen=${cfg.listenAddress} ")
124
124
+ "--port=${toString cfg.port} --user=${cfg.user} --group=${cfg.group} ${cfg.options} "
125
125
-
+ "--verbose " + (optionalString cfg.exportAll "--export-all") + concatStringsSep " " cfg.repositories;
125
125
+
+ "--verbose " + (optionalString cfg.exportAll "--export-all ") + concatStringsSep " " cfg.repositories;
126
126
};
127
127
128
128
};