nixos/jenkins: force .war (re)extraction at start-up

Or else we might run stale Jenkins.

+5
+5
nixos/modules/services/continuous-integration/jenkins/default.nix
··· 128 128 129 129 path = cfg.packages; 130 130 131 + # Force .war (re)extraction, or else we might run stale Jenkins. 132 + preStart = '' 133 + rm -rf ${cfg.home}/war 134 + ''; 135 + 131 136 script = '' 132 137 ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpPort=${toString cfg.port} ${concatStringsSep " " cfg.extraOptions} 133 138 '';