X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=primary-setup;h=49961efed986a3fb6e704cf20de161603490d475;hb=768363d8771edb9d9ed82425fa772d77b90139c0;hp=26ce7447dc03652040e84801f45e3314d39b6c12;hpb=12cab163424e3a7b0815646d1d4407f9b5839bcb;p=distro-setup diff --git a/primary-setup b/primary-setup index 26ce744..49961ef 100755 --- a/primary-setup +++ b/primary-setup @@ -5,11 +5,21 @@ source /usr/local/lib/err -pre="${0##*/}:" +script_name="${BASH_SOURCE[0]}" +script_name="${script_name##*/}" +pre="$script_name:${0##*/}:${SSH_CLIENT:+ $HOSTNAME:}" m() { printf "$pre %s\n" "$*"; "$@"; } e() { printf "$pre %s\n" "$*"; } err() { echo "[$(date +'%Y-%m-%d %H:%M:%S%z')]: $0: $*" >&2; } - +# service maybe +serm() { + local service + service="${*: -1}" + if [[ ! -s /etc/systemd/system/$service ]]; then + return 0 + fi + m "$@" +} [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@" @@ -22,19 +32,47 @@ if [[ $1 ]]; then fi source /a/bin/bash_unpublished/source-state +# fixing up a bad state that servers got in. +if [[ -e /dev/shm/iank-status ]]; then + chown iank.iank /dev/shm/iank-status +fi + + +if [[ $HOSTNAME == "$MAIL_HOST" ]]; then + mailhost_p=1 +else + mailhost_p=0 +fi +# https://www.robustperception.io/how-to-have-labels-for-machine-roles +dir=/var/lib/prometheus/node-exporter +if [[ -e $dir ]]; then + cat > $dir/mailhost.prom </dev/null; then if [[ $HOSTNAME == "$MAIL_HOST" ]]; then # arbtt disabled for now #DISPLAY=:0 arbtt-capture --sample-rate=10 & m systemctl --now enable rss2email.timer - # off is in mail-setup. no reason for this to be in the rss2email block. - m systemctl --now enable btrbk.timer else - m systemctl --now disable btrbk.timer + files=(/sysd-mail-once/btrbk*) + if (( ${#files[@]} )); then + rm -f ${files[@]} + fi - m systemctl stop rss2email.service - m systemctl --now disable rss2email.timer + serm systemctl stop rss2email.service + serm systemctl --now disable rss2email.timer # arbtt disabled for now # for ((i=0; i<10; i++)); do # killall arbtt-capture || break