From f6ffd58cf704bf5a5b8ef69baa89bdc155ee9b8c Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Wed, 31 Dec 2025 00:11:41 -0800 Subject: [PATCH] Skip keepalive for now --- modules/host-groups/apollo-2000.nix | 44 ++++++++++++++--------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/modules/host-groups/apollo-2000.nix b/modules/host-groups/apollo-2000.nix index 3038482..afb4a4f 100644 --- a/modules/host-groups/apollo-2000.nix +++ b/modules/host-groups/apollo-2000.nix @@ -35,28 +35,28 @@ }; systemd = { - services.hpe-ilo-keepalive = { - enable = true; - after = [ - "network.target" - "hpe-silent-fans.service" - ]; - wantedBy = [ "multi-user.target" ]; - description = "Maintains ilo ssh session via sending periodic command"; - - serviceConfig = { - Type = "simple"; - ExecStart = ''${pkgs.screen}/bin/screen -S ilofansession -X stuff "fan info^M"''; - }; - - path = with pkgs; [ - bash - config.programs.ssh.package - screen - ]; - - startAt = "*:0/5"; - }; +# services.hpe-ilo-keepalive = { +# enable = true; +# after = [ +# "network.target" +# "hpe-silent-fans.service" +# ]; +# wantedBy = [ "multi-user.target" ]; +# description = "Maintains ilo ssh session via sending periodic command"; +# +# serviceConfig = { +# Type = "simple"; +# ExecStart = ''${pkgs.screen}/bin/screen -S ilofansession -X stuff "fan info^M"''; +# }; +# +# path = with pkgs; [ +# bash +# config.programs.ssh.package +# screen +# ]; +# +# startAt = "*:0/5"; +# }; services.hpe-silent-fans = { enable = true; after = [ "network.target" ];