nixcfg/upgrade_nixos

17 lines
424 B
Plaintext
Raw Normal View History

2022-04-20 11:01:51 +00:00
#!/usr/bin/env ./sshtool
if [ "$CLUSTER" = "staging" ]; then
2024-01-22 16:15:29 +00:00
cmd nix-channel --add https://nixos.org/channels/nixos-23.11 nixos
else
2024-04-20 08:58:36 +00:00
cmd nix-channel --add https://nixos.org/channels/nixos-23.11 nixos
fi
2022-04-20 11:01:51 +00:00
cmd nix-channel --update
cmd nixos-rebuild boot
if [ "$REBOOT_NODES" = "yes" ]; then
cmd reboot
else
message "Node will not reboot, use \"REBOOT_NODES=yes $CMDFILE\" to reboot nodes when they finish upgrading."
fi