#!/usr/bin/env bash # -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*- # SPDX-License-Identifier: AGPL-3.0-or-later # shellcheck disable=SC2059,SC1117 # ubuntu, debian, arch, fedora ... DIST_ID=$(source /etc/os-release; echo "$ID"); # shellcheck disable=SC2034 DIST_VERS=$(source /etc/os-release; echo "$VERSION_ID"); ADMIN_NAME="${ADMIN_NAME:-$(git config user.name)}" ADMIN_NAME="${ADMIN_NAME:-$USER}" ADMIN_EMAIL="${ADMIN_EMAIL:-$(git config user.email)}" ADMIN_EMAIL="${ADMIN_EMAIL:-$USER@$(hostname)}" if [[ -z "${REPO_ROOT}" ]]; then REPO_ROOT=$(dirname "${BASH_SOURCE[0]}") while [ -h "${REPO_ROOT}" ] ; do REPO_ROOT=$(readlink "${REPO_ROOT}") done REPO_ROOT=$(cd "${REPO_ROOT}/.." && pwd -P ) fi if [[ -z ${TEMPLATES} ]]; then TEMPLATES="${REPO_ROOT}/utils/templates" fi if [[ -z "$CACHE" ]]; then CACHE="${REPO_ROOT}/cache" fi if [[ -z ${DIFF_CMD} ]]; then DIFF_CMD="diff -u" if command -v colordiff >/dev/null; then DIFF_CMD="colordiff -u" fi fi DOT_CONFIG="${DOT_CONFIG:-${REPO_ROOT}/.config.sh}" source_dot_config() { if [[ ! -e "${DOT_CONFIG}" ]]; then err_msg "configuration does not extsts at: ${DOT_CONFIG}" return 42 fi # shellcheck disable=SC1090 source "${DOT_CONFIG}" } sudo_or_exit() { # usage: sudo_or_exit if [ ! "$(id -u)" -eq 0 ]; then err_msg "this command requires root (sudo) privilege!" >&2 exit 42 fi } required_commands() { # usage: required_commands [cmd1 ...] local exit_val=0 while [ -n "$1" ]; do if ! command -v "$1" &>/dev/null; then err_msg "missing command $1" exit_val=42 fi shift done return $exit_val } # colors # ------ # shellcheck disable=SC2034 set_terminal_colors() { _colors=8 _creset='\e[0m' # reset all attributes _Black='\e[0;30m' _White='\e[1;37m' _Red='\e[0;31m' _Green='\e[0;32m' _Yellow='\e[0;33m' _Blue='\e[0;34m' _Violet='\e[0;35m' _Cyan='\e[0;36m' _BBlack='\e[1;30m' _BWhite='\e[1;37m' _BRed='\e[1;31m' _BGreen='\e[1;32m' _BYellow='\e[1;33m' _BBlue='\e[1;34m' _BPurple='\e[1;35m' _BCyan='\e[1;36m' } if [ ! -p /dev/stdout ]; then set_terminal_colors fi # reST # ---- if command -v fmt >/dev/null; then export FMT="fmt -u" else export FMT="cat" fi rst_title() { # usage: rst_title [part|chapter|section] case ${2-chapter} in part) printf "\n${_BGreen}${1//?/=}${_creset}\n${_BCyan}${1}${_creset}\n${_BGreen}${1//?/=}${_creset}\n";; chapter) printf "\n${_BCyan}${1}${_creset}\n${_BGreen}${1//?/=}${_creset}\n";; section) printf "\n${_BCyan}${1}${_creset}\n${_BGreen}${1//?/-}${_creset}\n";; *) err_msg "invalid argument '${2}' in line $(caller)" return 42 ;; esac } rst_para() { # usage: RST_INDENT=1 rst_para "lorem ipsum ..." local prefix='' if [[ -n $RST_INDENT ]] && [[ $RST_INDENT -gt 0 ]]; then prefix="$(for i in $(seq 1 "$RST_INDENT"); do printf " "; done)" echo -en "\n$*\n" | $FMT | prefix_stdout "$prefix" else echo -en "\n$*\n" | $FMT fi } die() { echo -e "${_BRed}ERROR:${_creset} ${BASH_SOURCE[1]}: line ${BASH_LINENO[0]}: ${2-died ${1-1}}" >&2; exit "${1-1}" } die_caller() { echo -e "${_BRed}ERROR:${_creset} ${BASH_SOURCE[2]}: line ${BASH_LINENO[1]}: ${FUNCNAME[1]}(): ${2-died ${1-1}}" >&2; exit "${1-1}" } err_msg() { echo -e "${_BRed}ERROR:${_creset} $*" >&2; } warn_msg() { echo -e "${_BBlue}WARN:${_creset} $*" >&2; } info_msg() { echo -e "${_BYellow}INFO:${_creset} $*" >&2; } clean_stdin() { if [[ $(uname -s) != 'Darwin' ]]; then while read -r -n1 -t 0.1; do : ; done fi } wait_key(){ # usage: waitKEY [] clean_stdin local _t=$1 local msg="${MSG}" [[ -z "$msg" ]] && msg="${_Green}** press any [${_BCyan}KEY${_Green}] to continue **${_creset}" [[ -n $FORCE_TIMEOUT ]] && _t=$FORCE_TIMEOUT [[ -n $_t ]] && _t="-t $_t" printf "$msg" # shellcheck disable=SC2086 read -r -s -n1 $_t echo clean_stdin } ask_yn() { # usage: ask_yn [Ny|Yn] [] local EXIT_YES=0 # exit status 0 --> successful local EXIT_NO=1 # exit status 1 --> error code local _t=$3 [[ -n $FORCE_TIMEOUT ]] && _t=$FORCE_TIMEOUT [[ -n $_t ]] && _t="-t $_t" case "${FORCE_SELECTION:-${2}}" in Y) return ${EXIT_YES} ;; N) return ${EXIT_NO} ;; Yn) local exit_val=${EXIT_YES} local choice="[${_BGreen}YES${_creset}/no]" local default="Yes" ;; *) local exit_val=${EXIT_NO} local choice="[${_BGreen}NO${_creset}/yes]" local default="No" ;; esac echo while true; do clean_stdin printf "$1 ${choice} " # shellcheck disable=SC2086 read -r -n1 $_t if [[ -z $REPLY ]]; then printf "$default\n"; break elif [[ $REPLY =~ ^[Yy]$ ]]; then exit_val=${EXIT_YES} printf "\n" break elif [[ $REPLY =~ ^[Nn]$ ]]; then exit_val=${EXIT_NO} printf "\n" break fi _t="" err_msg "invalid choice" done clean_stdin return $exit_val } tee_stderr () { # usage:: # tee_stderr 1 <>> print("hello") # hello local _t="0"; if [[ -n $1 ]] ; then _t="$1"; fi (while read -r line; do # shellcheck disable=SC2086 sleep $_t echo -e "$line" >&2 echo "$line" done) } prefix_stdout () { # usage: | prefix_stdout [prefix] local prefix="${_BYellow}-->|${_creset}" if [[ -n $1 ]] ; then prefix="$1"; fi # shellcheck disable=SC2162 (while IFS= read line; do echo -e "${prefix}$line" done) } append_line() { # usage: append_line # # Append line if not exists, create file if not exists. E.g:: # # append_line 'source ~/.foo' ~/bashrc local LINE=$1 local FILE=$2 grep -qFs -- "$LINE" "$FILE" || echo "$LINE" >> "$FILE" } cache_download() { # usage: cache_download local exit_value=0 if [[ -n ${SUDO_USER} ]]; then sudo -u "${SUDO_USER}" mkdir -p "${CACHE}" else mkdir -p "${CACHE}" fi if [[ -f "${CACHE}/$2" ]] ; then info_msg "already cached: $1" info_msg " --> ${CACHE}/$2" fi if [[ ! -f "${CACHE}/$2" ]]; then info_msg "caching: $1" info_msg " --> ${CACHE}/$2" if [[ -n ${SUDO_USER} ]]; then sudo -u "${SUDO_USER}" wget --progress=bar -O "${CACHE}/$2" "$1" ; exit_value=$? else wget --progress=bar -O "${CACHE}/$2" "$1" ; exit_value=$? fi if [[ ! $exit_value = 0 ]]; then err_msg "failed to download: $1" fi fi } backup_file() { # usage: backup_file /path/to/file.foo local stamp stamp=$(date +"_%Y%m%d_%H%M%S") info_msg "create backup: ${1}${stamp}" cp -a "${1}" "${1}${stamp}" } choose_one() { # usage: # # DEFAULT_SELECT= 2 \ # choose_one "your selection?" "Coffee" "Coffee with milk" local default=${DEFAULT_SELECT-1} local REPLY local env_name=$1 && shift local choice=$1; local max="${#@}" local _t [[ -n $FORCE_TIMEOUT ]] && _t=$FORCE_TIMEOUT [[ -n $_t ]] && _t="-t $_t" list=("$@") echo -e "${_BGreen}Menu::${_creset}" for ((i=1; i<= $((max -1)); i++)); do if [[ "$i" == "$default" ]]; then echo -e " ${_BGreen}$i.${_creset}) ${list[$i]} [default]" else echo -e " $i.) ${list[$i]}" fi done while true; do clean_stdin printf "$1 [${_BGreen}$default${_creset}] " if (( 10 > max )); then # shellcheck disable=SC2086 read -r -n1 $_t else # shellcheck disable=SC2086,SC2229 read -r $_t fi # selection fits [[ $REPLY =~ ^-?[0-9]+$ ]] && (( REPLY > 0 )) && (( REPLY < max )) && break # take default [[ -z $REPLY ]] && REPLY=$default && break _t="" err_msg "invalid choice" done eval "$env_name"='${list[${REPLY}]}' echo clean_stdin } install_template() { # usage: # # install_template [--no-eval] [--variant=] \ # {file} [{owner} [{group} [{chmod}]]] # # E.g. the origin of variant 'raw' of /etc/updatedb.conf is:: # # ${TEMPLATES}/etc/updatedb.conf:raw # # To install variant 'raw' of /etc/updatedb.conf without evaluated # replacements you can use:: # # install_template --variant=raw --no-eval \ # /etc/updatedb.conf root root 644 local _reply="" local do_eval=1 local variant="" local pos_args=("$0") for i in "$@"; do case $i in --no-eval) do_eval=0; shift ;; --variant=*) variant=":${i#*=}"; shift ;; *) pos_args+=("$i") ;; esac done local dst="${pos_args[1]}" local template_origin="${TEMPLATES}${dst}${variant}" local template_file="${TEMPLATES}${dst}" local owner="${pos_args[2]-$(id -un)}" local group="${pos_args[3]-$(id -gn)}" local chmod="${pos_args[4]-644}" info_msg "install (eval=$do_eval): ${dst}" [[ -n $variant ]] && info_msg "variant --> ${variant}" if [[ ! -f "${template_origin}" ]] ; then err_msg "${template_origin} does not exists" err_msg "... can't install $dst" wait_key 30 return 42 fi if [[ "$do_eval" == "1" ]]; then template_file="${CACHE}${dst}${variant}" info_msg "BUILD template ${template_file}" if [[ -n ${SUDO_USER} ]]; then sudo -u "${SUDO_USER}" mkdir -p "$(dirname "${template_file}")" else mkdir -p "$(dirname "${template_file}")" fi # shellcheck disable=SC2086 eval "echo \"$(cat ${template_origin})\"" > "${template_file}" if [[ -n ${SUDO_USER} ]]; then chown "${SUDO_USER}:${SUDO_USER}" "${template_file}" fi else template_file=$template_origin fi mkdir -p "$(dirname "${dst}")" if [[ ! -f "${dst}" ]]; then info_msg "install: ${template_file}" sudo -H install -v -o "${owner}" -g "${group}" -m "${chmod}" \ "${template_file}" "${dst}" | prefix_stdout return $? fi if [[ -f "${dst}" ]] && cmp --silent "${template_file}" "${dst}" ; then info_msg "file ${dst} allready installed" return 0 fi info_msg "diffrent file ${dst} allready exists on this host" while true; do choose_one _reply "choose next step with file $dst" \ "replace file" \ "leave file unchanged" \ "interactiv shell" \ "diff files" case $_reply in "replace file") info_msg "install: ${template_file}" sudo -H install -v -o "${owner}" -g "${group}" -m "${chmod}" \ "${template_file}" "${dst}" | prefix_stdout break ;; "leave file unchanged") break ;; "interactiv shell") echo -e "// edit ${_Red}${dst}${_creset} to your needs" echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" sudo -H -u "${owner}" -i $DIFF_CMD "${dst}" "${template_file}" echo echo -e "// ${_BBlack}did you edit file ...${_creset}" echo -en "// ${_Red}${dst}${_creset}" if ask_yn "//${_BBlack}... to your needs?${_creset}"; then break fi ;; "diff files") $DIFF_CMD "${dst}" "${template_file}" | prefix_stdout esac done } service_is_available() { # usage: service_is_available [[ -z $1 ]] && die_caller 42 "missing argument " local URL="$1" http_code=$(curl -H 'Cache-Control: no-cache' \ --silent -o /dev/null --head --write-out '%{http_code}' --insecure \ "${URL}") exit_val=$? if [[ $exit_val = 0 ]]; then info_msg "got $http_code from ${URL}" fi case "$http_code" in 404|410|423) exit_val=$http_code;; esac return "$exit_val" } # golang # ------ go_is_available() { # usage: go_is_available $SERVICE_USER && echo "go is installed!" sudo -i -u "${1}" which go &>/dev/null } install_go() { # usage: install_go "${GO_PKG_URL}" "${GO_TAR}" "${SERVICE_USER}" local _svcpr=" ${_Yellow}|${3}|${_creset} " rst_title "Install Go in user's HOME" section rst_para "download and install go binary .." cache_download "${1}" "${2}" tee_stderr 0.1 </dev/null && echo "ERROR - Go Installation not found in PATH!?!" which go >/dev/null && go version && echo "congratulations -- Go installation OK :)" EOF } # system accounts # --------------- service_account_is_available() { # usage: service_account_is_available "$SERVICE_USER" && echo "OK" sudo -i -u "$1" echo \$HOME &>/dev/null } drop_service_account() { # usage: drop_service_account "${SERVICE_USER}" rst_title "Drop ${1} HOME" section if ask_yn "Do you really want to drop ${1} home folder?"; then userdel -r -f "${1}" 2>&1 | prefix_stdout else rst_para "Leave HOME folder $(du -sh "${1}") unchanged." fi } interactive_shell(){ # usage: interactive_shell "${SERVICE_USER}" echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" sudo -H -u "${1}" -i } # systemd # ------- SYSTEMD_UNITS="${SYSTEMD_UNITS:-/lib/systemd/system}" systemd_install_service() { # usage: systemd_install_service "${SERVICE_NAME}" "${SERVICE_SYSTEMD_UNIT}" rst_title "Install System-D Unit ${1}" section echo install_template "${2}" root root 644 wait_key systemd_activate_service "${1}" } systemd_remove_service() { # usage: systemd_remove_service "${SERVICE_NAME}" "${SERVICE_SYSTEMD_UNIT}" if ! ask_yn "Do you really want to deinstall systemd unit ${1}?"; then return 42 fi systemd_deactivate_service "${1}" rm "${2}" 2>&1 | prefix_stdout } systemd_activate_service() { # usage: systemd_activate_service "${SERVICE_NAME}" rst_title "Activate ${1} (service)" section echo tee_stderr <&1 systemctl enable ${1}.service systemctl restart ${1}.service EOF tee_stderr <&1 systemctl status --no-pager ${1}.service EOF } systemd_deactivate_service() { # usage: systemd_deactivate_service "${SERVICE_NAME}" rst_title "De-Activate ${1} (service)" section echo tee_stderr <&1 | prefix_stdout systemctl stop ${1}.service systemctl disable ${1}.service EOF } systemd_restart_service() { # usage: systemd_restart_service "${SERVICE_NAME}" rst_title "Restart ${1} (service)" section echo tee_stderr <&1 systemctl restart ${1}.service EOF tee_stderr <&1 systemctl status --no-pager ${1}.service EOF } # nginx # ----- nginx_distro_setup() { # shellcheck disable=SC2034 NGINX_DEFAULT_SERVER=/etc/nginx/nginx.conf # Including *location* directives from a dedicated config-folder into the # server directive is, what what fedora (already) does. NGINX_APPS_ENABLED="/etc/nginx/default.d" # We add a apps-available folder and linking configurations into the # NGINX_APPS_ENABLED folder. See also nginx_include_apps_enabled(). NGINX_APPS_AVAILABLE="/etc/nginx/default.apps-available" case $DIST_ID-$DIST_VERS in ubuntu-*|debian-*) NGINX_PACKAGES="nginx" NGINX_DEFAULT_SERVER=/etc/nginx/sites-available/default ;; arch-*) NGINX_PACKAGES="nginx-mainline" ;; fedora-*) NGINX_PACKAGES="nginx" ;; *) err_msg "$DIST_ID-$DIST_VERS: nginx not yet implemented" ;; esac } nginx_distro_setup install_nginx(){ info_msg "installing nginx ..." pkg_install "${NGINX_PACKAGES}" case $DIST_ID-$DIST_VERS in arch-*|fedora-*) systemctl enable nginx systemctl start nginx ;; esac } nginx_is_installed() { command -v nginx &>/dev/null } nginx_reload() { info_msg "reload nginx .." echo if ! nginx -t; then err_msg "testing nginx configuration failed" return 42 fi systemctl restart nginx } nginx_install_app() { # usage: nginx_install_app [