mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-31 11:34:18 +00:00
Skip keepalive for now
This commit is contained in:
@@ -35,28 +35,28 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
systemd = {
|
systemd = {
|
||||||
services.hpe-ilo-keepalive = {
|
# services.hpe-ilo-keepalive = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
after = [
|
# after = [
|
||||||
"network.target"
|
# "network.target"
|
||||||
"hpe-silent-fans.service"
|
# "hpe-silent-fans.service"
|
||||||
];
|
# ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
# wantedBy = [ "multi-user.target" ];
|
||||||
description = "Maintains ilo ssh session via sending periodic command";
|
# description = "Maintains ilo ssh session via sending periodic command";
|
||||||
|
#
|
||||||
serviceConfig = {
|
# serviceConfig = {
|
||||||
Type = "simple";
|
# Type = "simple";
|
||||||
ExecStart = ''${pkgs.screen}/bin/screen -S ilofansession -X stuff "fan info^M"'';
|
# ExecStart = ''${pkgs.screen}/bin/screen -S ilofansession -X stuff "fan info^M"'';
|
||||||
};
|
# };
|
||||||
|
#
|
||||||
path = with pkgs; [
|
# path = with pkgs; [
|
||||||
bash
|
# bash
|
||||||
config.programs.ssh.package
|
# config.programs.ssh.package
|
||||||
screen
|
# screen
|
||||||
];
|
# ];
|
||||||
|
#
|
||||||
startAt = "*:0/5";
|
# startAt = "*:0/5";
|
||||||
};
|
# };
|
||||||
services.hpe-silent-fans = {
|
services.hpe-silent-fans = {
|
||||||
enable = true;
|
enable = true;
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
|
|||||||
Reference in New Issue
Block a user