tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
mongodb: we already set quiet in config
Mateusz Kowalczyk
8 years ago
93d364f4
519b987e
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
databases
mongodb.nix
+1
-1
nixos/modules/services/databases/mongodb.nix
···
108
after = [ "network.target" ];
109
110
serviceConfig = {
111
-
ExecStart = "${mongodb}/bin/mongod --quiet --config ${mongoCnf} --fork --pidfilepath ${cfg.pidFile}";
112
User = cfg.user;
113
PIDFile = cfg.pidFile;
114
Type = "forking";
···
108
after = [ "network.target" ];
109
110
serviceConfig = {
111
+
ExecStart = "${mongodb}/bin/mongod --config ${mongoCnf} --fork --pidfilepath ${cfg.pidFile}";
112
User = cfg.user;
113
PIDFile = cfg.pidFile;
114
Type = "forking";