]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - nixops/scripts/setup
Reorganize files
[perso/Immae/Config/Nix.git] / nixops / scripts / setup
CommitLineData
9f5da6d7
IB
1#!/bin/bash
2
d07d139a 3set -euo pipefail
05ec8138 4
bcd108fe 5RemoteRepo="gitolite@git.immae.eu:perso/Immae/Prive/Password_store/Sites"
568d4240
IB
6DeploymentUuid="cef694f3-081d-11e9-b31f-0242ec186adf"
7
8if ! which nix 2>/dev/null >/dev/null; then
9 cat <<-EOF
10 nix is needed, please install it:
11 > curl https://nixos.org/nix/install | sh
12 (or any other way handled by your distribution)
13 EOF
14 exit 1
15fi
9f5da6d7 16
df6dc085
IB
17if [ "${NIX_STORE:-/nix/store}" != "/nix/store" ]; then
18 cat <<-EOF
19 Nix store outside of /nix/store is not supported
20 EOF
21 exit 1
22fi
23
9f5da6d7
IB
24if [ -z "$NIXOPS_CONFIG_PASS_SUBTREE_REMOTE" \
25 -o -z "$NIXOPS_CONFIG_PASS_SUBTREE_PATH" ]; then
26 cat <<-EOF
568d4240
IB
27 Two environment variables are needed to setup the password store:
28 NIXOPS_CONFIG_PASS_SUBTREE_PATH : path where the subtree will be imported
29 NIXOPS_CONFIG_PASS_SUBTREE_REMOTE : remote name to give to the repository
30 EOF
9f5da6d7
IB
31 exit 1
32fi
33
34if ! pass $NIXOPS_CONFIG_PASS_SUBTREE_PATH > /dev/null 2>/dev/null; then
35 cat <<-EOF
568d4240
IB
36 /!\ This will modify your password store to add and import a subtree
37 with the specific passwords files. Choose a path that doesn’t exist
38 yet in your password store.
39 > pass git remote add $NIXOPS_CONFIG_PASS_SUBTREE_REMOTE $RemoteRepo
40 > pass git subtree add --prefix=$NIXOPS_CONFIG_PASS_SUBTREE_PATH $NIXOPS_CONFIG_PASS_SUBTREE_REMOTE master
41 Later, you can use pull_environment and push_environment scripts to
42 update the passwords when needed
43 Continue? [y/N]
44 EOF
9f5da6d7
IB
45 read y
46 if [ "$y" = "y" -o "$y" = "Y" ]; then
47 pass git remote add $NIXOPS_CONFIG_PASS_SUBTREE_REMOTE $RemoteRepo
48 pass git subtree add --prefix=$NIXOPS_CONFIG_PASS_SUBTREE_PATH $NIXOPS_CONFIG_PASS_SUBTREE_REMOTE master
49 else
50 echo "Aborting"
51 exit 1
52 fi
53fi
54
b9c11a4d
IB
55# Repull it before using it, just in case
56pass git subtree pull --prefix=$NIXOPS_CONFIG_PASS_SUBTREE_PATH $NIXOPS_CONFIG_PASS_SUBTREE_REMOTE master
57
d07d139a
IB
58gpg_keys=$(pass ls $NIXOPS_CONFIG_PASS_SUBTREE_PATH/Nixops/GPGKeys | sed -e "1d" | cut -d" " -f2)
59for key in $gpg_keys; do
60 content=$(pass show $NIXOPS_CONFIG_PASS_SUBTREE_PATH/Nixops/GPGKeys/$key)
61 fpr=$(echo "$content" | gpg --import-options show-only --import --with-colons | grep -e "^pub" | cut -d':' -f5)
62 gpg --list-key "$fpr" >/dev/null 2>/dev/null && imported=yes || imported=no
63 # /usr/share/doc/gnupg/DETAILS field 2
64 (echo "$content" | gpg --import-options show-only --import --with-colons |
65 grep -E '^pub:' |
66 cut -d':' -f2 |
67 grep -q '[fu]') && signed=yes || signed=no
68 if [ "$signed" = no -o "$imported" = no ] ; then
69 echo "The key for $key needs to be imported and signed (a local signature is enough)"
70 echo "$content" | gpg --import-options show-only --import
71 echo "Continue? [y/N]"
72 read y
73 if [ "$y" = "y" -o "$y" = "Y" ]; then
74 echo "$content" | gpg --import
75 gpg --expert --edit-key "$fpr" lsign quit
76 else
77 echo "Aborting"
78 exit 1
79 fi
80 fi
81done
82
08822d6f
IB
83if nix show-config --json | jq -e '.sandbox.value == "true"' >/dev/null; then
84 cat <<-EOF
85 There are some impure derivations in the repo currently (grep __noChroot), please put
86 sandbox = "relaxed"
87 in /etc/nix/nix.conf
88 you may also want to add
89 keep-outputs = true
90 keep-derivations = true
91 to prevent garbage collector from deleting build dependencies (they take a lot of time to build)
92 EOF
93 exit 1
94fi
95
568d4240 96DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
dbcba2ea 97source $(dirname $(dirname $DIR))/scripts/nix_env
568d4240
IB
98export NIXOPS_STATE="$(dirname $DIR)/state/eldiron.nixops"
99export NIXOPS_DEPLOYMENT="$DeploymentUuid"
100
db4f87d6 101if ! nixops_custom info 2>/dev/null >/dev/null; then
568d4240
IB
102 cat <<-EOF
103 Importing deployment file into nixops:
104 Continue? [y/N]
105 EOF
106 read y
107 if [ "$y" = "y" -o "$y" = "Y" ]; then
9690acd9 108 deployment=$(pass show $NIXOPS_CONFIG_PASS_SUBTREE_PATH/Nixops/Deployment)
db4f87d6 109 echo "$deployment" | nixops_custom import
568d4240
IB
110 else
111 echo "Aborting"
112 exit 1
34c58714 113 fi
9f5da6d7 114fi
34c58714 115
dbcba2ea
IB
116nixops_custom modify "$(dirname $DIR)/default.nix"
117
568d4240
IB
118cat <<-EOF
119 All set up.
120 Please make sure you’re using scripts/nixops_wrap when deploying
121 EOF