4 if [ "$#" -ne 1 ]; then
5 echo 'Need exactly one argument (system name).'
8 if [ ! "$1" = "eeepc" ] && [ ! "$1" = "x200s" ]&& [ ! "$1" = "x220" ]; then
9 echo "Need legal system name."
14 public_repos_dir="${HOME}/public_repos"
15 config_tree_prefix="${public_repos_dir}/config"
16 path_borgscript="${config_tree_prefix}/all_new_2018/borg.sh"
17 config_tree_buster="${config_tree_prefix}/buster"
18 setup_scripts_dir="${config_tree_buster}/setup_scripts"
19 repos_list_file="${public_repos_dir}/repos"
20 dir_secrets="${HOME}/tmp_secrets"
21 borgkeys_dir=~/.config/borg/keys
22 borgrepos_file=~/.borgrepos
24 authinfo_file=.authinfo
25 maildir=~/mail/maildir
29 if [ ! -d "${public_repos_dir}/${repo_name}" ]; then
30 cd "${public_repos_dir}"
31 git clone plom@plomlompom.com:/var/repos/${repo_name}
35 # Set up iniitial non-public parts of infrastructure: SSH authentication.
38 echo "Setting up .ssh"
41 ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub
45 ssh-keyscan -H "plomlompom.com" >> ~/.ssh/known_hosts
47 # Clone config to copy dotfiles etc. from it.
49 mkdir -p "${public_repos_dir}"
51 cd "${setup_scripts_dir}"
52 ./copy_dirtree.sh "${config_tree_buster}/home_files" "${HOME}" minimal user "${system_name}"
54 # Set up native messenger for tridactyl.
55 version='ef9f02d0da258f68d7faf8898707f6d83d90d07a'
56 curl -fsSl "https://raw.githubusercontent.com/tridactyl/tridactyl/${version}/native/install.sh" | bash
58 # Set up further non-public parts of infrastructure.
60 script -c 'gpg --import secret_keys.asc' /dev/null
61 tar xf borg_keyfiles.tar
62 mkdir -p "${borgkeys_dir}"
63 mv borg_keyfiles/* "${borgkeys_dir}"
64 # .authinfo may not be present on every secrets drive yet
65 if [ -f "${authinfo_file}" ]; then
66 cp "${authinfo_file}" ~
69 rm -rf "${dir_secrets}"
71 # Sync org dir via borgbackup. For this we need the borgbackup servers
72 # in our .ssh/known_hosts file.
73 cat "${borgrepos_file}" | while read line; do
74 first_char=$(echo "${line}" | cut -c1)
75 if [ "${first_char}" = "#" ]; then
78 server=$(echo "${line}" | sed 's/.*@//')
79 ssh-keyscan "${server}" >> "${ssh_dir}"/known_hosts
81 BORG_PASSPHRASE="${SECRETS_PASS}" "${path_borgscript}" orgpull
83 # Fill ~/public_repos.
84 cat "${repos_list_file}" | while read line; do
85 first_char=$(echo "${line}" | cut -c1)
86 if [ "${first_char}" = "#" ]; then
92 # Set up e-mail system. Note that we only do mbsync if the imap pass file
93 # is found. It may not be present on every secrets drive yet, so we have to
94 # deal with the possibility of it being absent at this point.
95 mkdir -p "${maildir}" # expected by mbsync/isync
96 if [ -f "${HOME}/${authinfo_file}" ]; then
101 # Final note on how to integrate tridactyl.
102 echo "TODO: As tridactyl user, don't forget to do :source on the first Firefox run, wait a little while (Tridactyl needs to walk through all commands in the .tridactylrc) and then re-start."