1
1
Fork 0

nixos.sh: add sending power action to target

This commit is contained in:
Myned 2025-03-29 18:13:38 -05:00
parent 2ebe8b6b28
commit 3a626b6429
Signed by: Myned
GPG key ID: C7224454F7881A34
2 changed files with 14 additions and 4 deletions
options/custom/scripts

View file

@ -132,6 +132,7 @@ in {
nix
nixos-rebuild
nvd
openssh
systemd
])
(bash "power" [

View file

@ -47,13 +47,22 @@ _build() {
fi
fi
# TODO: Send to remote target if specified
# Invoke systemd to shutdown system
# Use systemd to act on system
# Assumes errexit shell option is set
if [[ "${argc_poweroff:-}" ]]; then
sudo systemctl poweroff
action=(systemctl poweroff)
elif [[ "${argc_reboot:-}" ]]; then
sudo systemctl reboot
action=(systemctl reboot)
fi
# Invoke action on remote target if specified
if [[ -v action ]]; then
if [[ "${argc_target:-}" ]]; then
# shellcheck disable=SC2029
ssh root@"${argc_target}" "${action[@]}"
else
sudo "${action[@]}"
fi
fi
}