Merge pull request #146420 from Artturin/cadvisorfix

authored by Artturi and committed by GitHub aa64f174 be6b1ae5

+2
+2
nixos/modules/services/monitoring/cadvisor.nix
··· 111 wantedBy = [ "multi-user.target" ]; 112 after = [ "network.target" "docker.service" "influxdb.service" ]; 113 114 postStart = mkBefore '' 115 until ${pkgs.curl.bin}/bin/curl -s -o /dev/null 'http://${cfg.listenAddress}:${toString cfg.port}/containers/'; do 116 sleep 1;
··· 111 wantedBy = [ "multi-user.target" ]; 112 after = [ "network.target" "docker.service" "influxdb.service" ]; 113 114 + path = optionals config.boot.zfs.enabled [ pkgs.zfs ]; 115 + 116 postStart = mkBefore '' 117 until ${pkgs.curl.bin}/bin/curl -s -o /dev/null 'http://${cfg.listenAddress}:${toString cfg.port}/containers/'; do 118 sleep 1;