aboutsummaryrefslogtreecommitdiff
path: root/upgrade_nixos
blob: 69c780e3fcb2dbcc72d862630ba0cc904adf471f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ./sshtool

cmd nix-channel --add https://nixos.org/channels/nixos-22.11 nixos

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