diff options
Diffstat (limited to 'deploy_nixos')
-rwxr-xr-x | deploy_nixos | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/deploy_nixos b/deploy_nixos index 48ef9ea..b716993 100755 --- a/deploy_nixos +++ b/deploy_nixos @@ -7,17 +7,20 @@ copy cluster/$CLUSTER/cluster.nix /etc/nixos/cluster.nix copy cluster/$CLUSTER/node/$NIXHOST.nix /etc/nixos/node.nix copy cluster/$CLUSTER/node/$NIXHOST.site.nix /etc/nixos/site.nix +cmd mkdir -p /var/lib/wgautomesh +write_pass deuxfleurs/cluster/$CLUSTER/wgautomesh_gossip_secret /var/lib/wgautomesh/gossip_secret +copy nix/wgautomesh.nix /etc/nixos/wgautomesh.nix + if [ "$CLUSTER" = "staging" ]; then copy nix/nomad-driver-nix2.nix /etc/nixos/nomad-driver-nix2.nix - - cmd mkdir -p /var/lib/wgautomesh - write_pass deuxfleurs/cluster/$CLUSTER/wgautomesh_gossip_secret /var/lib/wgautomesh/gossip_secret - copy nix/wgautomesh.nix /etc/nixos/wgautomesh.nix fi if [ "$CLUSTER" = "prod" ]; then cmd nixos-rebuild boot message "-------------------------------------------------------------------------------------" + message "NIXOS CHANGES THAT WOULD BE APPLIED UPON SWITCH OR REBOOT:" + cmd nixos-rebuild dry-activate + message "-------------------------------------------------------------------------------------" message "New NixOS configuration hasn't been applied, to avoid disturbing production services." message "Please apply the following procedure to node '$NIXHOST':" message "1. Drain node in Nomad so that all jobs are relocated elsewhere" |