01ddd536f7ea7f424fbfbbe2839d3f91f710f30b
[distro-setup] / primary-setup
1 #!/bin/bash
2
3 # usage $0 [MAIL_HOST]
4 # setup things which involve being the primary host or not
5
6 source /usr/local/lib/err
7
8 pre="${0##*/}:"
9 m() { printf "$pre %s\n" "$*"; "$@"; }
10 e() { printf "$pre %s\n" "$*"; }
11 err() { echo "[$(date +'%Y-%m-%d %H:%M:%S%z')]: $0: $*" >&2; }
12
13
14 [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@"
15
16 if [[ $1 ]]; then
17 new_host=$1
18 if [[ $new_host == localhost ]]; then
19 mailhost_p=1
20 new_host=$HOSTNAME
21 else
22 mailhost_p=0
23 fi
24
25 # https://www.robustperception.io/how-to-have-labels-for-machine-roles
26 dir=/var/lib/prometheus/node-exporter
27 if [[ -e $dir ]]; then
28 cat > $dir/mailhost.prom <<EOF
29 host_role{role="mailhost"} $mailhost_p
30 EOF
31 fi
32
33 m sed -ri "s/MAIL_HOST=.*/MAIL_HOST=$new_host/" /a/bin/bash_unpublished/source-state
34 fi
35 source /a/bin/bash_unpublished/source-state
36
37 # fixing up a bad state that servers got in.
38 if [[ -e /dev/shm/iank-status ]]; then
39 chown iank.iank /dev/shm/iank-status
40 fi
41
42
43 if dpkg -s rss2email &>/dev/null; then
44 if [[ $HOSTNAME == "$MAIL_HOST" ]]; then
45 # arbtt disabled for now
46 #DISPLAY=:0 arbtt-capture --sample-rate=10 &
47 m systemctl --now enable rss2email.timer
48 # off is in mail-setup. no reason for this to be in the rss2email block.
49 m systemctl --now enable btrbk.timer
50 else
51 m systemctl --now disable btrbk.timer
52
53 m systemctl stop rss2email.service
54 m systemctl --now disable rss2email.timer
55 # arbtt disabled for now
56 # for ((i=0; i<10; i++)); do
57 # killall arbtt-capture || break
58 # sleep 1
59 # if [[ $i == 9 ]]; then
60 # exit 1
61 # fi
62 # done
63 fi
64 fi
65
66 # todo: whats going on here? figure out if this should be removed.
67
68 # if dpkg -s radicale &>/dev/null; then
69 # if [[ $HOSTNAME == "$MAIL_HOST" ]]; then
70 # m systemctl restart radicale
71 # m systemctl enable radicale
72 # if [[ -e /etc/logrotate.d/radicale.disabled ]]; then
73 # m mv /etc/logrotate.d/radicale{.disabled,}
74 # fi
75 # else
76 # m systemctl stop radicale
77 # m systemctl disable radicale
78 # # weekly logrotate tries to restart radicale even if it's a disabled service in flidas.
79 # if [[ -e /etc/logrotate.d/radicale ]]; then
80 # m mv /etc/logrotate.d/radicale{,.disabled}
81 # fi
82 # fi
83 # fi
84
85
86 # todo: this needs to be disabled earlier than primary-setup in switch-mail-host
87
88 # if dpkg -s profile-sync-daemon &>/dev/null; then
89 # if [[ $HOSTNAME == "$MAIL_HOST" ]]; then
90 # m systemctl --user start psd
91 # m systemctl --user enable psd
92 # else
93 # m systemctl --user stop psd
94 # m systemctl --user disable psd
95 # fi
96 # fi
97
98
99 m /a/exe/mail-setup
100 exit 0