| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | # -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*- | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | # shellcheck disable=SC2059,SC1117 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | # ubuntu, debian, arch, fedora, centos ... | 
					
						
							| 
									
										
										
										
											2020-03-08 18:37:16 +01:00
										 |  |  | DIST_ID=$(source /etc/os-release; echo "$ID"); | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  | # shellcheck disable=SC2034 | 
					
						
							| 
									
										
										
										
											2020-03-08 18:37:16 +01:00
										 |  |  | DIST_VERS=$(source /etc/os-release; echo "$VERSION_ID"); | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 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)}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | if [[ -z ${DIFF_CMD} ]]; then | 
					
						
							|  |  |  |     DIFF_CMD="diff -u" | 
					
						
							|  |  |  |     if command -v colordiff >/dev/null;  then | 
					
						
							|  |  |  |         DIFF_CMD="colordiff -u" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  | DOT_CONFIG="${DOT_CONFIG:-${REPO_ROOT}/.config.sh}" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | source_dot_config() { | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |     if [[ ! -e "${DOT_CONFIG}" ]]; then | 
					
						
							| 
									
										
										
										
											2020-12-26 11:38:47 +01:00
										 |  |  |         err_msg "configuration does not exists at: ${DOT_CONFIG}" | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |         return 42 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  |     # shellcheck disable=SC1090 | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |     source "${DOT_CONFIG}" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 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 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | required_commands() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     # usage:  required_commands [cmd1 ...] | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     local exit_val=0 | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     while [ -n "$1" ]; do | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ! command -v "$1" &>/dev/null; then | 
					
						
							|  |  |  |             err_msg "missing command $1" | 
					
						
							|  |  |  |             exit_val=42 | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         shift | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  |     return $exit_val | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  | # colors | 
					
						
							|  |  |  | # ------ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | set_terminal_colors() { | 
					
						
							| 
									
										
										
										
											2021-06-28 09:06:06 +02:00
										 |  |  |     # https://en.wikipedia.org/wiki/ANSI_escape_code | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # CSI (Control Sequence Introducer) sequences | 
					
						
							|  |  |  |     _show_cursor='\e[?25h' | 
					
						
							|  |  |  |     _hide_cursor='\e[?25l' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # SGR (Select Graphic Rendition) parameters | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     _creset='\e[0m'  # reset all attributes | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-28 09:06:06 +02:00
										 |  |  |     # original specification only had 8 colors | 
					
						
							|  |  |  |     _colors=8 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     _Black='\e[0;30m' | 
					
						
							|  |  |  |     _White='\e[1;37m' | 
					
						
							|  |  |  |     _Red='\e[0;31m' | 
					
						
							|  |  |  |     _Green='\e[0;32m' | 
					
						
							|  |  |  |     _Yellow='\e[0;33m' | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |     _Blue='\e[0;94m' | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     _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' | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |     _BBlue='\e[1;94m' | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     _BPurple='\e[1;35m' | 
					
						
							|  |  |  |     _BCyan='\e[1;36m' | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 13:25:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  | if [ ! -p /dev/stdout ] && [ ! "$TERM" = 'dumb' ] && [ ! "$TERM" = 'unknown' ]; then | 
					
						
							| 
									
										
										
										
											2020-02-03 13:25:51 +01:00
										 |  |  |     set_terminal_colors | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # reST | 
					
						
							|  |  |  | # ---- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if command -v fmt >/dev/null; then | 
					
						
							|  |  |  |     export FMT="fmt -u" | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |     export FMT="cat" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | rst_title() { | 
					
						
							|  |  |  |     # usage: rst_title <header-text> [part|chapter|section] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case ${2-chapter} in | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |         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";; | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         *) | 
					
						
							|  |  |  |             err_msg "invalid argument '${2}' in line $(caller)" | 
					
						
							|  |  |  |             return 42 | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | rst_para() { | 
					
						
							|  |  |  |     # usage:  RST_INDENT=1 rst_para "lorem ipsum ..." | 
					
						
							|  |  |  |     local prefix='' | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     if [[ -n $RST_INDENT ]] && [[ $RST_INDENT -gt 0 ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |         prefix="$(for i in $(seq 1 "$RST_INDENT"); do printf "  "; done)" | 
					
						
							|  |  |  |         echo -en "\n$*\n" | $FMT | prefix_stdout "$prefix" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |         echo -en "\n$*\n" | $FMT | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  | 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}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  | err_msg()  { echo -e "${_BRed}ERROR:${_creset} $*" >&2; } | 
					
						
							|  |  |  | warn_msg() { echo -e "${_BBlue}WARN:${_creset}  $*" >&2; } | 
					
						
							|  |  |  | info_msg() { echo -e "${_BYellow}INFO:${_creset}  $*" >&2; } | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  | build_msg() { | 
					
						
							|  |  |  |     local tag="$1        " | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |     echo -e "${_Blue}${tag:0:10}${_creset}$*" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-26 17:23:12 +01:00
										 |  |  | dump_return() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Use this as last command in your function to prompt an ERROR message if | 
					
						
							|  |  |  |     # the exit code is not zero. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local err=$1 | 
					
						
							|  |  |  |     [ "$err" -ne "0" ] && err_msg "${FUNCNAME[1]} exit with error ($err)" | 
					
						
							|  |  |  |     return "$err" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | clean_stdin() { | 
					
						
							|  |  |  |     if [[ $(uname -s) != 'Darwin' ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         while read -r -n1 -t 0.1; do : ; done | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | wait_key(){ | 
					
						
							| 
									
										
										
										
											2020-12-26 11:38:47 +01:00
										 |  |  |     # usage: wait_key [<timeout in sec>] | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     clean_stdin | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     local _t=$1 | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     local msg="${MSG}" | 
					
						
							|  |  |  |     [[ -z "$msg" ]] && msg="${_Green}** press any [${_BCyan}KEY${_Green}] to continue **${_creset}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     [[ -n $FORCE_TIMEOUT ]] && _t=$FORCE_TIMEOUT | 
					
						
							|  |  |  |     [[ -n $_t ]] && _t="-t $_t" | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     printf "$msg" | 
					
						
							| 
									
										
										
										
											2024-01-07 18:37:11 +01:00
										 |  |  |     # shellcheck disable=SC2229 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     # shellcheck disable=SC2086 | 
					
						
							| 
									
										
										
										
											2022-05-27 18:43:14 +02:00
										 |  |  |     read -r -s -n1 $_t || true | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     clean_stdin | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ask_yn() { | 
					
						
							|  |  |  |     # usage: ask_yn <prompt-text> [Ny|Yn] [<timeout in sec>] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local EXIT_YES=0 # exit status 0 --> successful | 
					
						
							|  |  |  |     local EXIT_NO=1  # exit status 1 --> error code | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local _t=$3 | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     [[ -n $FORCE_TIMEOUT ]] && _t=$FORCE_TIMEOUT | 
					
						
							|  |  |  |     [[ -n $_t ]] && _t="-t $_t" | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     case "${FORCE_SELECTION:-${2}}" in | 
					
						
							|  |  |  |         Y) return ${EXIT_YES} ;; | 
					
						
							|  |  |  |         N) return ${EXIT_NO} ;; | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         Yn) | 
					
						
							|  |  |  |             local exit_val=${EXIT_YES} | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |             local choice="[${_BGreen}YES${_creset}/no]" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |             local default="Yes" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             local exit_val=${EXIT_NO} | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |             local choice="[${_BGreen}NO${_creset}/yes]" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |             local default="No" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     while true; do | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |         clean_stdin | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         printf "$1 ${choice} " | 
					
						
							| 
									
										
										
										
											2024-01-07 18:37:11 +01:00
										 |  |  |         # shellcheck disable=SC2086,SC2229 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         read -r -n1 $_t | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         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 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     clean_stdin | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     return $exit_val | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tee_stderr () { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:: | 
					
						
							|  |  |  |     #   tee_stderr 1 <<EOF | python -i | 
					
						
							|  |  |  |     #   print("hello") | 
					
						
							|  |  |  |     #   EOF | 
					
						
							|  |  |  |     #   ... | 
					
						
							|  |  |  |     #   >>> print("hello") | 
					
						
							|  |  |  |     #    hello | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local _t="0"; | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     if [[ -n $1 ]] ; then _t="$1"; fi | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     (while read -r line; do | 
					
						
							| 
									
										
										
										
											2024-01-07 18:37:11 +01:00
										 |  |  |          # shellcheck disable=SC2086,SC2229 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |          sleep $_t | 
					
						
							|  |  |  |          echo -e "$line" >&2 | 
					
						
							|  |  |  |          echo "$line" | 
					
						
							|  |  |  |     done) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | prefix_stdout () { | 
					
						
							|  |  |  |     # usage: <cmd> | prefix_stdout [prefix] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     local prefix="${_BYellow}-->|${_creset}" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |     if [[ -n $1 ]] ; then prefix="$1"; fi | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     # shellcheck disable=SC2162 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     (while IFS= read line; do | 
					
						
							|  |  |  |         echo -e "${prefix}$line" | 
					
						
							|  |  |  |     done) | 
					
						
							| 
									
										
										
										
											2021-06-27 11:48:57 +02:00
										 |  |  |     # some piped commands hide the cursor, show cursory when the stream ends | 
					
						
							| 
									
										
										
										
											2021-06-28 09:06:06 +02:00
										 |  |  |     echo -en "$_show_cursor" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | append_line() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: append_line <line> <file> | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # 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 <url> <local-filename> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local exit_value=0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     if [[ -n ${SUDO_USER} ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         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" | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |         if [[ -n ${SUDO_USER} ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |             sudo -u "${SUDO_USER}" wget --progress=bar -O "${CACHE}/$2" "$1" ; exit_value=$? | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             wget --progress=bar -O "${CACHE}/$2" "$1" ; exit_value=$? | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2020-02-04 19:47:33 +01:00
										 |  |  |         if [[ ! $exit_value = 0 ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |             err_msg "failed to download: $1" | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  | backup_file() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: backup_file /path/to/file.foo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |     local stamp | 
					
						
							|  |  |  |     stamp=$(date +"_%Y%m%d_%H%M%S") | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |     info_msg "create backup: ${1}${stamp}" | 
					
						
							|  |  |  |     cp -a "${1}" "${1}${stamp}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | choose_one() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #   DEFAULT_SELECT= 2 \ | 
					
						
							|  |  |  |     #     choose_one <name> "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 | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     [[ -n $FORCE_TIMEOUT ]] && _t=$FORCE_TIMEOUT | 
					
						
							|  |  |  |     [[ -n $_t ]] && _t="-t $_t" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     list=("$@") | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     echo -e "${_BGreen}Menu::${_creset}" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     for ((i=1; i<= $((max -1)); i++)); do | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         if [[ "$i" == "$default" ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |             echo -e "  ${_BGreen}$i.${_creset}) ${list[$i]} [default]" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         else | 
					
						
							|  |  |  |             echo -e "  $i.) ${list[$i]}" | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  |     while true; do | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |         clean_stdin | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |         printf "$1 [${_BGreen}$default${_creset}] " | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         if (( 10 > max )); then | 
					
						
							| 
									
										
										
										
											2024-01-07 18:37:11 +01:00
										 |  |  |             # shellcheck disable=SC2086,SC2229 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |             read -r -n1 $_t | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         else | 
					
						
							|  |  |  |             # shellcheck disable=SC2086,SC2229 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |             read -r $_t | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         fi | 
					
						
							|  |  |  |         # selection fits | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         [[ $REPLY =~ ^-?[0-9]+$ ]] && (( REPLY > 0 )) && (( REPLY < max )) && break | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # take default | 
					
						
							|  |  |  |         [[ -z $REPLY ]] && REPLY=$default && break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _t="" | 
					
						
							|  |  |  |         err_msg "invalid choice" | 
					
						
							|  |  |  |     done | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     eval "$env_name"='${list[${REPLY}]}' | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     clean_stdin | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install_template() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     #     install_template [--no-eval] [--variant=<name>] \ | 
					
						
							|  |  |  |     #                      {file} [{owner} [{group} [{chmod}]]] | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     # | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     # 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 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     local _reply="" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     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 | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     local dst="${pos_args[1]}" | 
					
						
							|  |  |  |     local template_origin="${TEMPLATES}${dst}${variant}" | 
					
						
							|  |  |  |     local template_file="${TEMPLATES}${dst}" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     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}" | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     [[ -n $variant ]] && info_msg "variant --> ${variant}" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if [[ ! -f "${template_origin}" ]] ; then | 
					
						
							|  |  |  |         err_msg "${template_origin} does not exists" | 
					
						
							|  |  |  |         err_msg "... can't install $dst" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         wait_key 30 | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [[ "$do_eval" == "1" ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |         template_file="${CACHE}${dst}${variant}" | 
					
						
							| 
									
										
										
										
											2021-08-20 14:21:54 +02:00
										 |  |  | 	info_msg "BUILD ${template_file}" | 
					
						
							|  |  |  | 	info_msg "BUILD using template ${template_origin}" | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |         if [[ -n ${SUDO_USER} ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |             sudo -u "${SUDO_USER}" mkdir -p "$(dirname "${template_file}")" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |             mkdir -p "$(dirname "${template_file}")" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         fi | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |         # shellcheck disable=SC2086 | 
					
						
							|  |  |  |         eval "echo \"$(cat ${template_origin})\"" > "${template_file}" | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |         if [[ -n ${SUDO_USER} ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |             chown "${SUDO_USER}:${SUDO_USER}" "${template_file}" | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         template_file=$template_origin | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |     mkdir -p "$(dirname "${dst}")" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     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 | 
					
						
							| 
									
										
										
										
											2021-06-29 19:01:07 +02:00
										 |  |  |         info_msg "file ${dst} already installed" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |         return 0 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-29 19:01:07 +02:00
										 |  |  |     info_msg "different file ${dst} already exists on this host" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     while true; do | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         choose_one _reply "choose next step with file $dst" \
 | 
					
						
							|  |  |  |                    "replace file" \
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |                    "leave file unchanged" \
 | 
					
						
							| 
									
										
										
										
											2021-04-28 16:29:03 +02:00
										 |  |  |                    "interactive shell" \
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |                    "diff files" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case $_reply in | 
					
						
							|  |  |  |             "replace file") | 
					
						
							|  |  |  |                 info_msg "install: ${template_file}" | 
					
						
							|  |  |  |                 sudo -H install -v -o "${owner}" -g "${group}" -m "${chmod}" \
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |                      "${template_file}" "${dst}" | prefix_stdout | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                 break | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |                 ;; | 
					
						
							|  |  |  |             "leave file unchanged") | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |                 break | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |                 ;; | 
					
						
							| 
									
										
										
										
											2021-04-28 16:29:03 +02:00
										 |  |  |             "interactive shell") | 
					
						
							| 
									
										
										
										
											2020-04-04 17:53:16 +02:00
										 |  |  |                 echo -e "// edit ${_Red}${dst}${_creset} to your needs" | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |                 echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |                 sudo -H -u "${owner}" -i | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |                 $DIFF_CMD "${dst}" "${template_file}" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |                 echo | 
					
						
							| 
									
										
										
										
											2020-04-04 17:53:16 +02:00
										 |  |  |                 echo -e "// ${_BBlack}did you edit file ...${_creset}" | 
					
						
							|  |  |  |                 echo -en "//  ${_Red}${dst}${_creset}" | 
					
						
							|  |  |  |                 if ask_yn "//${_BBlack}... to your needs?${_creset}"; then | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                     break | 
					
						
							|  |  |  |                 fi | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |                 ;; | 
					
						
							|  |  |  |             "diff files") | 
					
						
							|  |  |  |                 $DIFF_CMD "${dst}" "${template_file}" | prefix_stdout | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  |         esac | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     done | 
					
						
							| 
									
										
										
										
											2020-01-08 18:13:22 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | service_is_available() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  service_is_available <URL> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     [[ -z $1 ]] && die_caller 42 "missing argument <URL>" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     local URL="$1" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     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 | 
					
						
							| 
									
										
										
										
											2020-01-30 19:55:51 +01:00
										 |  |  |     case "$http_code" in | 
					
						
							|  |  |  |         404|410|423) exit_val=$http_code;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-31 15:53:53 +01:00
										 |  |  |     return "$exit_val" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  | # python | 
					
						
							|  |  |  | # ------ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PY="${PY:=3}" | 
					
						
							|  |  |  | PYTHON="${PYTHON:=python$PY}" | 
					
						
							|  |  |  | PY_ENV="${PY_ENV:=local/py${PY}}" | 
					
						
							|  |  |  | PY_ENV_BIN="${PY_ENV}/bin" | 
					
						
							|  |  |  | PY_ENV_REQ="${PY_ENV_REQ:=${REPO_ROOT}/requirements*.txt}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # List of python packages (folders) or modules (files) installed by command: | 
					
						
							|  |  |  | # pyenv.install | 
					
						
							|  |  |  | PYOBJECTS="${PYOBJECTS:=.}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # folder where the python distribution takes place | 
					
						
							|  |  |  | PYDIST="${PYDIST:=dist}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # folder where the intermediate build files take place | 
					
						
							|  |  |  | PYBUILD="${PYBUILD:=build/py${PY}}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # https://www.python.org/dev/peps/pep-0508/#extras | 
					
						
							|  |  |  | #PY_SETUP_EXTRAS='[develop,test]' | 
					
						
							|  |  |  | PY_SETUP_EXTRAS="${PY_SETUP_EXTRAS:=[develop,test]}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PIP_BOILERPLATE=( pip wheel setuptools ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2120 | 
					
						
							|  |  |  | pyenv() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  pyenv [vtenv_opts ...] | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #   vtenv_opts: see 'pip install --help' | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # Builds virtualenv with 'requirements*.txt' (PY_ENV_REQ) installed.  The | 
					
						
							|  |  |  |     # virtualenv will be reused by validating sha256sum of the requirement | 
					
						
							|  |  |  |     # files. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     required_commands \
 | 
					
						
							|  |  |  |         sha256sum "${PYTHON}" \
 | 
					
						
							|  |  |  |         || exit | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local pip_req=() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ! pyenv.OK > /dev/null; then | 
					
						
							|  |  |  |         rm -f "${PY_ENV}/${PY_ENV_REQ}.sha256" | 
					
						
							|  |  |  |         pyenv.drop > /dev/null | 
					
						
							|  |  |  |         build_msg PYENV "[virtualenv] installing ${PY_ENV_REQ} into ${PY_ENV}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         "${PYTHON}" -m venv "$@" "${PY_ENV}" | 
					
						
							|  |  |  |         "${PY_ENV_BIN}/python" -m pip install -U "${PIP_BOILERPLATE[@]}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for i in ${PY_ENV_REQ}; do | 
					
						
							|  |  |  |             pip_req=( "${pip_req[@]}" "-r" "$i" ) | 
					
						
							|  |  |  |         done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ( | 
					
						
							|  |  |  |             [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |             # shellcheck disable=SC2086 | 
					
						
							|  |  |  |             "${PY_ENV_BIN}/python" -m pip install "${pip_req[@]}" \
 | 
					
						
							|  |  |  |                 && sha256sum ${PY_ENV_REQ} > "${PY_ENV}/requirements.sha256" | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     pyenv.OK | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _pyenv_OK='' | 
					
						
							|  |  |  | pyenv.OK() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # probes if pyenv exists and runs the script from pyenv.check | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [ "$_pyenv_OK" == "OK" ] && return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [ ! -f "${PY_ENV_BIN}/python" ]; then | 
					
						
							|  |  |  |         build_msg PYENV "[virtualenv] missing ${PY_ENV_BIN}/python" | 
					
						
							|  |  |  |         return 1 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [ ! -f "${PY_ENV}/requirements.sha256" ] \
 | 
					
						
							| 
									
										
										
										
											2023-01-04 01:44:55 +01:00
										 |  |  |         || ! sha256sum -c "${PY_ENV}/requirements.sha256" > /dev/null 2>&1; then | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |         build_msg PYENV "[virtualenv] requirements.sha256 failed" | 
					
						
							|  |  |  |         sed 's/^/          [virtualenv] - /' <"${PY_ENV}/requirements.sha256" | 
					
						
							|  |  |  |         return 1 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-18 17:20:37 +02:00
										 |  |  |     if [ "$VERBOSE" = "1" ]; then | 
					
						
							|  |  |  |         pyenv.check \
 | 
					
						
							|  |  |  |             | "${PY_ENV_BIN}/python" 2>&1 \
 | 
					
						
							|  |  |  |             | prefix_stdout "${_Blue}PYENV     ${_creset}[check] " | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         pyenv.check | "${PY_ENV_BIN}/python" 1>/dev/null | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     local err=${PIPESTATUS[1]} | 
					
						
							|  |  |  |     if [ "$err" -ne "0" ]; then | 
					
						
							|  |  |  |         build_msg PYENV "[check] python test failed" | 
					
						
							|  |  |  |         return "$err" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-18 17:20:37 +02:00
										 |  |  |     [ "$VERBOSE" = "1" ] && build_msg PYENV "OK" | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |     _pyenv_OK="OK" | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.drop() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     build_msg PYENV "[virtualenv] drop ${PY_ENV}" | 
					
						
							|  |  |  |     rm -rf "${PY_ENV}" | 
					
						
							|  |  |  |     _pyenv_OK='' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.check() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Prompts a python script with additional checks. Used by pyenv.OK to check | 
					
						
							|  |  |  |     # if virtualenv is ready to install python objects.  This function should be | 
					
						
							|  |  |  |     # overwritten by the application script. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local imp="" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for i in "${PIP_BOILERPLATE[@]}"; do | 
					
						
							|  |  |  |         imp="$imp, $i" | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cat  <<EOF | 
					
						
							|  |  |  | import ${imp#,*} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.install() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ! pyenv.OK; then | 
					
						
							|  |  |  |         py.clean > /dev/null | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     if ! pyenv.install.OK > /dev/null; then | 
					
						
							|  |  |  |         build_msg PYENV "[install] ${PYOBJECTS}" | 
					
						
							|  |  |  |         if ! pyenv.OK >/dev/null; then | 
					
						
							|  |  |  |             pyenv | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         for i in ${PYOBJECTS}; do | 
					
						
							| 
									
										
										
										
											2024-08-08 11:46:54 +02:00
										 |  |  |     	    build_msg PYENV "[install] pip install --use-pep517 --no-build-isolation -e '$i${PY_SETUP_EXTRAS}'" | 
					
						
							|  |  |  |     	    "${PY_ENV_BIN}/python" -m pip install --use-pep517 --no-build-isolation -e "$i${PY_SETUP_EXTRAS}" | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |         done | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     pyenv.install.OK | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _pyenv_install_OK='' | 
					
						
							|  |  |  | pyenv.install.OK() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [ "$_pyenv_install_OK" == "OK" ] && return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local imp="" | 
					
						
							|  |  |  |     local err="" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [ "." = "${PYOBJECTS}" ]; then | 
					
						
							|  |  |  |         imp="import $(basename "$(pwd)")" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         # shellcheck disable=SC2086 | 
					
						
							|  |  |  |         for i in ${PYOBJECTS}; do imp="$imp, $i"; done | 
					
						
							|  |  |  |         imp="import ${imp#,*} " | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |         "${PY_ENV_BIN}/python" -c "import sys; sys.path.pop(0); $imp;" 2>/dev/null | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     err=$? | 
					
						
							|  |  |  |     if [ "$err" -ne "0" ]; then | 
					
						
							|  |  |  |         build_msg PYENV "[install] python installation test failed" | 
					
						
							|  |  |  |         return "$err" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     build_msg PYENV "[install] OK" | 
					
						
							|  |  |  |     _pyenv_install_OK="OK" | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.uninstall() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     build_msg PYENV "[uninstall] ${PYOBJECTS}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [ "." = "${PYOBJECTS}" ]; then | 
					
						
							|  |  |  | 	pyenv.cmd python setup.py develop --uninstall 2>&1 \
 | 
					
						
							|  |  |  |             | prefix_stdout "${_Blue}PYENV     ${_creset}[pyenv.uninstall] " | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2024-01-07 18:37:11 +01:00
										 |  |  |         # shellcheck disable=SC2086 | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  | 	pyenv.cmd python -m pip uninstall --yes ${PYOBJECTS} 2>&1 \
 | 
					
						
							|  |  |  |             | prefix_stdout "${_Blue}PYENV     ${_creset}[pyenv.uninstall] " | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.cmd() { | 
					
						
							|  |  |  |     pyenv.install | 
					
						
							|  |  |  |     (   set -e | 
					
						
							|  |  |  |         # shellcheck source=/dev/null | 
					
						
							|  |  |  |         source "${PY_ENV_BIN}/activate" | 
					
						
							|  |  |  |         [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |         "$@" | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | pyenv.activate() { | 
					
						
							|  |  |  |     pyenv.install | 
					
						
							|  |  |  |     # shellcheck source=/dev/null | 
					
						
							|  |  |  |     source "${PY_ENV_BIN}/activate" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-26 17:23:12 +01:00
										 |  |  | # Sphinx doc | 
					
						
							|  |  |  | # ---------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GH_PAGES="build/gh-pages" | 
					
						
							|  |  |  | DOCS_DIST="${DOCS_DIST:=dist/docs}" | 
					
						
							|  |  |  | DOCS_BUILD="${DOCS_BUILD:=build/docs}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | docs.html() { | 
					
						
							|  |  |  |     build_msg SPHINX "HTML ./docs --> file://$(readlink -e "$(pwd)/$DOCS_DIST")" | 
					
						
							|  |  |  |     pyenv.install | 
					
						
							|  |  |  |     docs.prebuild | 
					
						
							|  |  |  |     # shellcheck disable=SC2086 | 
					
						
							|  |  |  |     PATH="${PY_ENV_BIN}:${PATH}" pyenv.cmd sphinx-build \
 | 
					
						
							|  |  |  |         ${SPHINX_VERBOSE} ${SPHINXOPTS} \
 | 
					
						
							|  |  |  | 	-b html -c ./docs -d "${DOCS_BUILD}/.doctrees" ./docs "${DOCS_DIST}" | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | docs.live() { | 
					
						
							|  |  |  |     build_msg SPHINX  "autobuild ./docs --> file://$(readlink -e "$(pwd)/$DOCS_DIST")" | 
					
						
							|  |  |  |     pyenv.install | 
					
						
							|  |  |  |     docs.prebuild | 
					
						
							|  |  |  |     # shellcheck disable=SC2086 | 
					
						
							|  |  |  |     PATH="${PY_ENV_BIN}:${PATH}" pyenv.cmd sphinx-autobuild \
 | 
					
						
							|  |  |  |         ${SPHINX_VERBOSE} ${SPHINXOPTS} --open-browser --host 0.0.0.0 \
 | 
					
						
							|  |  |  | 	-b html -c ./docs -d "${DOCS_BUILD}/.doctrees" ./docs "${DOCS_DIST}" | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | docs.clean() { | 
					
						
							|  |  |  |     build_msg CLEAN "docs -- ${DOCS_BUILD} ${DOCS_DIST}" | 
					
						
							|  |  |  |     # shellcheck disable=SC2115 | 
					
						
							|  |  |  |     rm -rf "${GH_PAGES}" "${DOCS_BUILD}" "${DOCS_DIST}" | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | docs.prebuild() { | 
					
						
							|  |  |  |     # Dummy function to run some actions before sphinx-doc build gets started. | 
					
						
							|  |  |  |     # This finction needs to be overwritten by the application script. | 
					
						
							|  |  |  |     true | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2155 | 
					
						
							|  |  |  | docs.gh-pages() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # The commit history in the gh-pages branch makes no sense, the history only | 
					
						
							|  |  |  |     # inflates the repository unnecessarily.  Therefore a *new orphan* branch | 
					
						
							|  |  |  |     # is created each time we deploy on the gh-pages branch. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     docs.clean | 
					
						
							|  |  |  |     docs.prebuild | 
					
						
							|  |  |  |     docs.html | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |     local head="$(git rev-parse HEAD)" | 
					
						
							|  |  |  |     local branch="$(git name-rev --name-only HEAD)" | 
					
						
							|  |  |  |     local remote="$(git config branch."${branch}".remote)" | 
					
						
							|  |  |  |     local remote_url="$(git config remote."${remote}".url)" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     build_msg GH-PAGES "prepare folder: ${GH_PAGES}" | 
					
						
							|  |  |  |     build_msg GH-PAGES "remote of the gh-pages branch: ${remote} / ${remote_url}" | 
					
						
							|  |  |  |     build_msg GH-PAGES "current branch: ${branch}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # prepare the *orphan* gh-pages working tree | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         git worktree remove -f "${GH_PAGES}" | 
					
						
							|  |  |  |         git branch -D gh-pages | 
					
						
							|  |  |  |     ) &> /dev/null  || true | 
					
						
							|  |  |  |     git worktree add --no-checkout "${GH_PAGES}" "${remote}/master" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pushd "${GH_PAGES}" &> /dev/null | 
					
						
							|  |  |  |     git checkout --orphan gh-pages | 
					
						
							|  |  |  |     git rm -rfq . | 
					
						
							|  |  |  |     popd &> /dev/null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cp -r "${DOCS_DIST}"/* "${GH_PAGES}"/ | 
					
						
							|  |  |  |     touch "${GH_PAGES}/.nojekyll" | 
					
						
							|  |  |  |     cat > "${GH_PAGES}/404.html" <<EOF | 
					
						
							|  |  |  | <html><head><META http-equiv='refresh' content='0;URL=index.html'></head></html> | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pushd "${GH_PAGES}" &> /dev/null | 
					
						
							|  |  |  |     git add --all . | 
					
						
							|  |  |  |     git commit -q -m "gh-pages build from: ${branch}@${head} (${remote_url})" | 
					
						
							|  |  |  |     git push -f "${remote}" gh-pages | 
					
						
							|  |  |  |     popd &> /dev/null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     set +x | 
					
						
							|  |  |  |     build_msg GH-PAGES "deployed" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  | # 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}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     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}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     if ! ask_yn "Do you really want to deinstall systemd unit ${1}?"; then | 
					
						
							|  |  |  |         return 42 | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  |     systemd_deactivate_service "${1}" | 
					
						
							|  |  |  |     rm "${2}"  2>&1 | prefix_stdout | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | systemd_activate_service() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-11 15:58:35 +01:00
										 |  |  |     # usage:  systemd_activate_service "${SERVICE_NAME}" | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Activate ${1} (service)" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     tee_stderr <<EOF | bash 2>&1 | 
					
						
							|  |  |  | systemctl enable  ${1}.service | 
					
						
							|  |  |  | systemctl restart ${1}.service | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     tee_stderr <<EOF | bash 2>&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 <<EOF | bash 2>&1 | prefix_stdout | 
					
						
							|  |  |  | systemctl stop    ${1}.service | 
					
						
							|  |  |  | systemctl disable ${1}.service | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-11 15:58:35 +01:00
										 |  |  | systemd_restart_service() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  systemd_restart_service "${SERVICE_NAME}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Restart ${1} (service)" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     tee_stderr <<EOF | bash 2>&1 | 
					
						
							|  |  |  | systemctl restart ${1}.service | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     tee_stderr <<EOF | bash 2>&1 | 
					
						
							|  |  |  | systemctl status --no-pager ${1}.service | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  | # nginx | 
					
						
							|  |  |  | # ----- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | nginx_distro_setup() { | 
					
						
							|  |  |  |     # shellcheck disable=SC2034 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     NGINX_DEFAULT_SERVER=/etc/nginx/nginx.conf | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Including *location* directives from a dedicated config-folder into the | 
					
						
							| 
									
										
										
										
											2020-12-26 11:38:47 +01:00
										 |  |  |     # server directive is, what fedora and centos (already) does. | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     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" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |             NGINX_PACKAGES="nginx" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             err_msg "$DIST_ID-$DIST_VERS: nginx not yet implemented" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install_nginx(){ | 
					
						
							|  |  |  |     info_msg "installing nginx ..." | 
					
						
							|  |  |  |     pkg_install "${NGINX_PACKAGES}" | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         arch-*|fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |             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() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-26 11:38:47 +01:00
										 |  |  |     # usage:  nginx_install_app [<template option> ...] <myapp.conf> | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     # | 
					
						
							|  |  |  |     # <template option>:   see install_template | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local template_opts=() | 
					
						
							|  |  |  |     local pos_args=("$0") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for i in "$@"; do | 
					
						
							|  |  |  |         case $i in | 
					
						
							|  |  |  |             -*) template_opts+=("$i");; | 
					
						
							|  |  |  |             *)  pos_args+=("$i");; | 
					
						
							|  |  |  |         esac | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     nginx_include_apps_enabled "${NGINX_DEFAULT_SERVER}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     install_template "${template_opts[@]}" \
 | 
					
						
							|  |  |  |                      "${NGINX_APPS_AVAILABLE}/${pos_args[1]}" \
 | 
					
						
							|  |  |  |                      root root 644 | 
					
						
							|  |  |  |     nginx_enable_app "${pos_args[1]}" | 
					
						
							|  |  |  |     info_msg "installed nginx app: ${pos_args[1]}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | nginx_include_apps_enabled() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |     # Add the *NGINX_APPS_ENABLED* infrastructure to a nginx server block.  Such | 
					
						
							|  |  |  |     # infrastructure is already known from fedora and centos, including apps (location | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     # directives) from the /etc/nginx/default.d folder into the *default* nginx | 
					
						
							|  |  |  |     # server. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: nginx_include_apps_enabled <config-file> | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #   config-file: Config file with server directive in. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[ -z $1 ]] && die_caller 42 "missing argument <config-file>" | 
					
						
							|  |  |  |     local server_conf="$1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # include /etc/nginx/default.d/*.conf; | 
					
						
							|  |  |  |     local include_directive="include ${NGINX_APPS_ENABLED}/*.conf;" | 
					
						
							|  |  |  |     local include_directive_re="^\s*include ${NGINX_APPS_ENABLED}/\*\.conf;" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-27 18:43:14 +02:00
										 |  |  |     info_msg "checking existence: '${include_directive}' in file ${server_conf}" | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     if grep "${include_directive_re}" "${server_conf}"; then | 
					
						
							|  |  |  |         info_msg "OK, already exists." | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "add missing directive: '${include_directive}'" | 
					
						
							|  |  |  |     cp "${server_conf}" "${server_conf}.bak" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         local line | 
					
						
							|  |  |  |         local stage=0 | 
					
						
							|  |  |  |         while IFS=  read -r line | 
					
						
							|  |  |  |         do | 
					
						
							|  |  |  |             echo "$line" | 
					
						
							|  |  |  |             if [[ $stage = 0 ]]; then | 
					
						
							|  |  |  |                 if [[ $line =~ ^[[:space:]]*server*[[:space:]]*\{ ]]; then | 
					
						
							|  |  |  |                     stage=1 | 
					
						
							|  |  |  |                 fi | 
					
						
							|  |  |  |             fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if [[ $stage = 1 ]]; then | 
					
						
							|  |  |  |                 echo "        # Load configuration files for the default server block." | 
					
						
							|  |  |  |                 echo "        $include_directive" | 
					
						
							|  |  |  |                 echo "" | 
					
						
							|  |  |  |                 stage=2 | 
					
						
							|  |  |  |             fi | 
					
						
							|  |  |  |         done < "${server_conf}.bak" | 
					
						
							|  |  |  |     ) > "${server_conf}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | nginx_remove_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  nginx_remove_app <myapp.conf> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "remove nginx app: $1" | 
					
						
							|  |  |  |     nginx_dissable_app "$1" | 
					
						
							|  |  |  |     rm -f "${NGINX_APPS_AVAILABLE}/$1" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | nginx_enable_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  nginx_enable_app <myapp.conf> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local CONF="$1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "enable nginx app: ${CONF}" | 
					
						
							|  |  |  |     mkdir -p "${NGINX_APPS_ENABLED}" | 
					
						
							|  |  |  |     rm -f "${NGINX_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |     ln -s "${NGINX_APPS_AVAILABLE}/${CONF}" "${NGINX_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |     nginx_reload | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | nginx_dissable_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  nginx_disable_app <myapp.conf> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local CONF="$1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "disable nginx app: ${CONF}" | 
					
						
							|  |  |  |     rm -f "${NGINX_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |     nginx_reload | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | # Apache | 
					
						
							|  |  |  | # ------ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  | apache_distro_setup() { | 
					
						
							|  |  |  |     # shellcheck disable=SC2034 | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             # debian uses the /etc/apache2 path, while other distros use | 
					
						
							|  |  |  |             # the apache default at /etc/httpd | 
					
						
							|  |  |  |             APACHE_SITES_AVAILABLE="/etc/apache2/sites-available" | 
					
						
							|  |  |  |             APACHE_SITES_ENABLED="/etc/apache2/sites-enabled" | 
					
						
							|  |  |  |             APACHE_MODULES="/usr/lib/apache2/modules" | 
					
						
							|  |  |  |             APACHE_PACKAGES="apache2" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							|  |  |  |             APACHE_SITES_AVAILABLE="/etc/httpd/sites-available" | 
					
						
							|  |  |  |             APACHE_SITES_ENABLED="/etc/httpd/sites-enabled" | 
					
						
							|  |  |  |             APACHE_MODULES="modules" | 
					
						
							|  |  |  |             APACHE_PACKAGES="apache" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             APACHE_SITES_AVAILABLE="/etc/httpd/sites-available" | 
					
						
							|  |  |  |             APACHE_SITES_ENABLED="/etc/httpd/sites-enabled" | 
					
						
							|  |  |  |             APACHE_MODULES="modules" | 
					
						
							| 
									
										
										
										
											2022-05-27 18:43:14 +02:00
										 |  |  |             APACHE_PACKAGES="httpd mod_ssl" | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             err_msg "$DIST_ID-$DIST_VERS: apache not yet implemented" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  | install_apache(){ | 
					
						
							|  |  |  |     info_msg "installing apache ..." | 
					
						
							|  |  |  |     pkg_install "$APACHE_PACKAGES" | 
					
						
							| 
									
										
										
										
											2020-04-06 17:59:06 +02:00
										 |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         arch-*|fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             if ! grep "IncludeOptional sites-enabled" "/etc/httpd/conf/httpd.conf"; then | 
					
						
							|  |  |  |                 echo "IncludeOptional sites-enabled/*.conf" >> "/etc/httpd/conf/httpd.conf" | 
					
						
							|  |  |  |             fi | 
					
						
							|  |  |  |             systemctl enable httpd | 
					
						
							|  |  |  |             systemctl start httpd | 
					
						
							| 
									
										
										
										
											2020-04-06 17:59:06 +02:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | apache_is_installed() { | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) (command -v apachectl) &>/dev/null;; | 
					
						
							|  |  |  |         arch-*) (command -v httpd) &>/dev/null;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) (command -v httpd) &>/dev/null;; | 
					
						
							| 
									
										
										
										
											2020-04-06 17:59:06 +02:00
										 |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | apache_reload() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "reload apache .." | 
					
						
							|  |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             sudo -H apachectl configtest | 
					
						
							|  |  |  |             sudo -H systemctl force-reload apache2 | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         arch-*|fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             sudo -H httpd -t | 
					
						
							|  |  |  |             sudo -H systemctl force-reload httpd | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | apache_install_site() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     # usage:  apache_install_site [<template option> ...] <mysite.conf> | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # <template option>:   see install_template | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     local template_opts=() | 
					
						
							|  |  |  |     local pos_args=("$0") | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     for i in "$@"; do | 
					
						
							|  |  |  |         case $i in | 
					
						
							|  |  |  |             -*) template_opts+=("$i");; | 
					
						
							|  |  |  |             *)  pos_args+=("$i");; | 
					
						
							|  |  |  |         esac | 
					
						
							|  |  |  |     done | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     install_template "${template_opts[@]}" \
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |                      "${APACHE_SITES_AVAILABLE}/${pos_args[1]}" \
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |                      root root 644 | 
					
						
							|  |  |  |     apache_enable_site "${pos_args[1]}" | 
					
						
							|  |  |  |     info_msg "installed apache site: ${pos_args[1]}" | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | apache_remove_site() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  apache_remove_site <mysite.conf> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "remove apache site: $1" | 
					
						
							|  |  |  |     apache_dissable_site "$1" | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     rm -f "${APACHE_SITES_AVAILABLE}/$1" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | apache_enable_site() { | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # usage:  apache_enable_site <mysite.conf> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     local CONF="$1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "enable apache site: ${CONF}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             sudo -H a2ensite -q "${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							|  |  |  |             mkdir -p "${APACHE_SITES_ENABLED}" | 
					
						
							|  |  |  |             rm -f "${APACHE_SITES_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ln -s "${APACHE_SITES_AVAILABLE}/${CONF}" "${APACHE_SITES_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             mkdir -p "${APACHE_SITES_ENABLED}" | 
					
						
							|  |  |  |             rm -f "${APACHE_SITES_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ln -s "${APACHE_SITES_AVAILABLE}/${CONF}" "${APACHE_SITES_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |     apache_reload | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | apache_dissable_site() { | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # usage:  apache_disable_site <mysite.conf> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     local CONF="$1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "disable apache site: ${CONF}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             sudo -H a2dissite -q "${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							|  |  |  |             rm -f "${APACHE_SITES_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             rm -f "${APACHE_SITES_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     apache_reload | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # uWSGI | 
					
						
							|  |  |  | # ----- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uWSGI_SETUP="${uWSGI_SETUP:=/etc/uwsgi}" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # How distros manage uWSGI apps is very different.  From uWSGI POV read: | 
					
						
							|  |  |  | # - https://uwsgi-docs.readthedocs.io/en/latest/Management.html | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  | uWSGI_distro_setup() { | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             # init.d --> /usr/share/doc/uwsgi/README.Debian.gz | 
					
						
							|  |  |  |             # For uWSGI debian uses the LSB init process, this might be changed | 
					
						
							|  |  |  |             # one day, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833067 | 
					
						
							|  |  |  |             uWSGI_APPS_AVAILABLE="${uWSGI_SETUP}/apps-available" | 
					
						
							|  |  |  |             uWSGI_APPS_ENABLED="${uWSGI_SETUP}/apps-enabled" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |             uWSGI_PACKAGES="uwsgi" | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							|  |  |  |             # systemd --> /usr/lib/systemd/system/uwsgi@.service | 
					
						
							|  |  |  |             # For uWSGI archlinux uses systemd template units, see | 
					
						
							|  |  |  |             # - http://0pointer.de/blog/projects/instances.html | 
					
						
							|  |  |  |             # - https://uwsgi-docs.readthedocs.io/en/latest/Systemd.html#one-service-per-app-in-systemd | 
					
						
							|  |  |  |             uWSGI_APPS_AVAILABLE="${uWSGI_SETUP}/apps-archlinux" | 
					
						
							|  |  |  |             uWSGI_APPS_ENABLED="${uWSGI_SETUP}" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |             uWSGI_PACKAGES="uwsgi" | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             # systemd --> /usr/lib/systemd/system/uwsgi.service | 
					
						
							| 
									
										
										
										
											2022-05-27 18:43:14 +02:00
										 |  |  |             # Fedora runs uWSGI in emperor-tyrant mode: in Tyrant mode the | 
					
						
							|  |  |  |             # Emperor will run the vassal using the UID/GID of the vassal | 
					
						
							|  |  |  |             # configuration file [1] (user and group of the app .ini file). | 
					
						
							|  |  |  |             # There are some quirks abbout additional POSIX groups in uWSGI | 
					
						
							|  |  |  |             # 2.0.x, read at least: https://github.com/unbit/uwsgi/issues/2099 | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             uWSGI_APPS_AVAILABLE="${uWSGI_SETUP}/apps-available" | 
					
						
							|  |  |  |             uWSGI_APPS_ENABLED="${uWSGI_SETUP}.d" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |             uWSGI_PACKAGES="uwsgi" | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |             err_msg "$DIST_ID-$DIST_VERS: uWSGI not yet implemented" | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  | esac | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  | install_uwsgi(){ | 
					
						
							|  |  |  |     info_msg "installing uwsgi ..." | 
					
						
							|  |  |  |     pkg_install "$uWSGI_PACKAGES" | 
					
						
							|  |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |             # enable & start should be called once at uWSGI installation time | 
					
						
							|  |  |  |             systemctl enable uwsgi | 
					
						
							|  |  |  |             systemctl restart uwsgi | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | uWSGI_restart() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     # usage:  uWSGI_restart() <myapp.ini> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local CONF="$1" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     [[ -z $CONF ]] && die_caller 42 "missing argument <myapp.ini>" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     info_msg "restart uWSGI service" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             # the 'service' method seems broken in that way, that it (re-)starts | 
					
						
							|  |  |  |             # the whole uwsgi process. | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |             service uwsgi restart "${CONF%.*}" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             # restart systemd template instance | 
					
						
							|  |  |  |             if uWSGI_app_available "${CONF}"; then | 
					
						
							|  |  |  |                 systemctl restart "uwsgi@${CONF%.*}" | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |                 info_msg "[uWSGI:systemd-template] ${CONF} not installed (no need to restart)" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             fi | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             # in emperor mode, just touch the file to restart | 
					
						
							|  |  |  |             if uWSGI_app_enabled "${CONF}"; then | 
					
						
							|  |  |  |                 touch "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |                 # it seems, there is a polling time in between touch and restart | 
					
						
							|  |  |  |                 # of the service. | 
					
						
							|  |  |  |                 sleep 3 | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |                 info_msg "[uWSGI:emperor] ${CONF} not installed (no need to restart)" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             fi | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             err_msg "$DIST_ID-$DIST_VERS: uWSGI not yet implemented" | 
					
						
							|  |  |  |             return 42 | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | uWSGI_app_available() { | 
					
						
							|  |  |  |     # usage:  uWSGI_app_available <myapp.ini> | 
					
						
							|  |  |  |     local CONF="$1" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     [[ -z $CONF ]] && die_caller 42 "missing argument <myapp.ini>" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     [[ -f "${uWSGI_APPS_AVAILABLE}/${CONF}" ]] | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | uWSGI_install_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-27 18:43:14 +02:00
										 |  |  |     # usage:  uWSGI_install_app [<template option> ...] <myapp.ini> [{owner} [{group} [{chmod}]]] | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     # | 
					
						
							|  |  |  |     # <template option>:  see install_template | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     local pos_args=("$0") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     for i in "$@"; do | 
					
						
							|  |  |  |         case $i in | 
					
						
							|  |  |  |             -*) template_opts+=("$i");; | 
					
						
							|  |  |  |             *)  pos_args+=("$i");; | 
					
						
							|  |  |  |         esac | 
					
						
							|  |  |  |     done | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     mkdir -p "${uWSGI_APPS_AVAILABLE}" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     install_template "${template_opts[@]}" \
 | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |                      "${uWSGI_APPS_AVAILABLE}/${pos_args[1]}" \
 | 
					
						
							| 
									
										
										
										
											2022-05-27 18:43:14 +02:00
										 |  |  |                      "${pos_args[2]:-root}" "${pos_args[3]:-root}" "${pos_args[4]:-644}" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     uWSGI_enable_app "${pos_args[1]}" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "${pos_args[1]}" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |     info_msg "uWSGI app: ${pos_args[1]} is installed" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uWSGI_remove_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     # usage:  uWSGI_remove_app <myapp.ini> | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     local CONF="$1" | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     [[ -z $CONF ]] && die_caller 42 "missing argument <myapp.ini>" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     info_msg "remove uWSGI app: ${CONF}" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     uWSGI_disable_app "${CONF}" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "${CONF}" | 
					
						
							|  |  |  |     rm -f "${uWSGI_APPS_AVAILABLE}/${CONF}" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uWSGI_app_enabled() { | 
					
						
							|  |  |  |     # usage:  uWSGI_app_enabled <myapp.ini> | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     local exit_val=0 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     local CONF="$1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[ -z $CONF ]] && die_caller 42 "missing argument <myapp.ini>" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             [[ -f "${uWSGI_APPS_ENABLED}/${CONF}" ]] | 
					
						
							|  |  |  |             exit_val=$? | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							|  |  |  |             systemctl -q is-enabled "uwsgi@${CONF%.*}" | 
					
						
							|  |  |  |             exit_val=$? | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             [[ -f "${uWSGI_APPS_ENABLED}/${CONF}" ]] | 
					
						
							|  |  |  |             exit_val=$? | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |         *) | 
					
						
							|  |  |  |             # FIXME | 
					
						
							|  |  |  |             err_msg "$DIST_ID-$DIST_VERS: uWSGI not yet implemented" | 
					
						
							|  |  |  |             exit_val=1 | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  |     return $exit_val | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2164 | 
					
						
							|  |  |  | uWSGI_enable_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     # usage:   uWSGI_enable_app <myapp.ini> | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     local CONF="$1" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     [[ -z $CONF ]] && die_caller 42 "missing argument <myapp.ini>" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             mkdir -p "${uWSGI_APPS_ENABLED}" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             rm -f "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ln -s "${uWSGI_APPS_AVAILABLE}/${CONF}" "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |             info_msg "enabled uWSGI app: ${CONF} (restart required)" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             mkdir -p "${uWSGI_APPS_ENABLED}" | 
					
						
							|  |  |  |             rm -f "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ln -s "${uWSGI_APPS_AVAILABLE}/${CONF}" "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							| 
									
										
										
										
											2020-03-06 14:47:00 +01:00
										 |  |  |             systemctl enable "uwsgi@${CONF%.*}" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             info_msg "enabled uWSGI app: ${CONF} (restart required)" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             mkdir -p "${uWSGI_APPS_ENABLED}" | 
					
						
							|  |  |  |             rm -f "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ln -s "${uWSGI_APPS_AVAILABLE}/${CONF}" "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             info_msg "enabled uWSGI app: ${CONF}" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             # FIXME | 
					
						
							|  |  |  |             err_msg "$DIST_ID-$DIST_VERS: uWSGI not yet implemented" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uWSGI_disable_app() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     # usage:   uWSGI_disable_app <myapp.ini> | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     local CONF="$1" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     [[ -z $CONF ]] && die_caller 42 "missing argument <myapp.ini>" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |         ubuntu-*|debian-*) | 
					
						
							|  |  |  |             service uwsgi stop "${CONF%.*}" | 
					
						
							|  |  |  |             rm -f "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             info_msg "disabled uWSGI app: ${CONF} (restart uWSGI required)" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch-*) | 
					
						
							|  |  |  |             systemctl stop "uwsgi@${CONF%.*}" | 
					
						
							|  |  |  |             systemctl disable "uwsgi@${CONF%.*}" | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             rm -f "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-02-25 20:20:17 +01:00
										 |  |  |             # in emperor mode, just remove the app.ini file | 
					
						
							|  |  |  |             rm -f "${uWSGI_APPS_ENABLED}/${CONF}" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             # FIXME | 
					
						
							|  |  |  |             err_msg "$DIST_ID-$DIST_VERS: uWSGI not yet implemented" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # distro's package manager | 
					
						
							|  |  |  | # ------------------------ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-22 01:11:25 +02:00
										 |  |  | _apt_pkg_info_is_updated=0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | pkg_install() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |     # usage: TITLE='install foobar' pkg_install foopkg barpkg | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_title "${TITLE:-installation of packages}" section | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  |     echo -e "\npackage(s)::\n" | 
					
						
							|  |  |  |     # shellcheck disable=SC2068 | 
					
						
							|  |  |  |     echo "  " $@ | $FMT | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ! ask_yn "Should packages be installed?" Yn 30; then | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     case $DIST_ID in | 
					
						
							|  |  |  |         ubuntu|debian) | 
					
						
							| 
									
										
										
										
											2020-04-22 01:11:25 +02:00
										 |  |  |             if [[ $_apt_pkg_info_is_updated == 0 ]]; then | 
					
						
							|  |  |  |                 export _apt_pkg_info_is_updated=1 | 
					
						
							|  |  |  |                 apt update | 
					
						
							|  |  |  |             fi | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |             # shellcheck disable=SC2068 | 
					
						
							|  |  |  |             apt-get install -m -y $@ | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							| 
									
										
										
										
											2022-04-11 23:46:14 +02:00
										 |  |  |             pacman --noprogressbar -Sy --noconfirm --needed $@ | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         fedora) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							|  |  |  |             dnf install -y $@ | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | 	centos) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							|  |  |  |             yum install -y $@ | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pkg_remove() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |     # usage: TITLE='remove foobar' pkg_remove foopkg barpkg | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_title "${TITLE:-remove packages}" section | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  |     echo -e "\npackage(s)::\n" | 
					
						
							|  |  |  |     # shellcheck disable=SC2068 | 
					
						
							|  |  |  |     echo "  " $@ | $FMT | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ! ask_yn "Should packages be removed (purge)?" Yn 30; then | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     case $DIST_ID in | 
					
						
							|  |  |  |         ubuntu|debian) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							|  |  |  |             apt-get purge --autoremove --ignore-missing -y $@ | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							| 
									
										
										
										
											2021-06-28 09:27:10 +02:00
										 |  |  |             pacman --noprogressbar -R --noconfirm $@ | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |             ;; | 
					
						
							|  |  |  |         fedora) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							|  |  |  |             dnf remove -y $@ | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | 	centos) | 
					
						
							|  |  |  |             # shellcheck disable=SC2068 | 
					
						
							|  |  |  |             yum remove -y $@ | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pkg_is_installed() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: pkg_is_install foopkg || pkg_install foopkg | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     case $DIST_ID in | 
					
						
							|  |  |  |         ubuntu|debian) | 
					
						
							|  |  |  |             dpkg -l "$1" &> /dev/null | 
					
						
							|  |  |  |             return $? | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         arch) | 
					
						
							|  |  |  |             pacman -Qsq "$1" &> /dev/null | 
					
						
							|  |  |  |             return $? | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         fedora) | 
					
						
							|  |  |  |             dnf list -q --installed "$1" &> /dev/null | 
					
						
							|  |  |  |             return $? | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | 	centos) | 
					
						
							|  |  |  |             yum list -q --installed "$1" &> /dev/null | 
					
						
							|  |  |  |             return $? | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # git tooling | 
					
						
							|  |  |  | # ----------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2164 | 
					
						
							|  |  |  | git_clone() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #    git_clone <url> <name> [<branch> [<user>]] | 
					
						
							|  |  |  |     #    git_clone <url> <path> [<branch> [<user>]] | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #  First form uses $CACHE/<name> as destination folder, second form clones | 
					
						
							| 
									
										
										
										
											2021-06-29 19:01:07 +02:00
										 |  |  |     #  into <path>.  If repository is already cloned, pull from <branch> and | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     #  update working tree (if needed, the caller has to stash local changes). | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2021-04-25 12:03:54 +02:00
										 |  |  |     #    git clone https://github.com/searxng/searxng searx-src origin/master searxlogin | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local url="$1" | 
					
						
							|  |  |  |     local dest="$2" | 
					
						
							|  |  |  |     local branch="$3" | 
					
						
							|  |  |  |     local user="$4" | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     local bash_cmd="bash" | 
					
						
							|  |  |  |     local remote="origin" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if [[ ! "${dest:0:1}" = "/" ]]; then | 
					
						
							|  |  |  |         dest="$CACHE/$dest" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[ -z $branch ]] && branch=master | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     [[ -z $user ]] && [[ -n "${SUDO_USER}" ]] && user="${SUDO_USER}" | 
					
						
							|  |  |  |     [[ -n $user ]] && bash_cmd="sudo -H -u $user -i" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if [[ -d "${dest}" ]] ; then | 
					
						
							|  |  |  |         info_msg "already cloned: $dest" | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |         tee_stderr 0.1 <<EOF | $bash_cmd 2>&1 |  prefix_stdout "  ${_Yellow}|$user|${_creset} " | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | cd "${dest}" | 
					
						
							|  |  |  | git checkout -m -B "$branch" --track "$remote/$branch" | 
					
						
							|  |  |  | git pull --all | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     else | 
					
						
							|  |  |  |         info_msg "clone into: $dest" | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |         tee_stderr 0.1 <<EOF | $bash_cmd 2>&1 |  prefix_stdout "  ${_Yellow}|$user|${_creset} " | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | mkdir -p "$(dirname "$dest")" | 
					
						
							|  |  |  | cd "$(dirname "$dest")" | 
					
						
							|  |  |  | git clone --branch "$branch" --origin "$remote" "$url" "$(basename "$dest")" | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # containers | 
					
						
							|  |  |  | # ---------- | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  | in_container() { | 
					
						
							|  |  |  |     # Test if shell runs in a container. | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |     # | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  |     # usage:  in_container && echo "process running inside a LXC container" | 
					
						
							|  |  |  |     #         in_container || echo "process is not running inside a LXC container" | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2020-03-18 15:34:46 +01:00
										 |  |  |     # sudo_or_exit | 
					
						
							|  |  |  |     # hint:   Reads init process environment, therefore root access is required! | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |     # to be safe, take a look at the environment of process 1 (/sbin/init) | 
					
						
							| 
									
										
										
										
											2020-03-18 15:34:46 +01:00
										 |  |  |     # grep -qa 'container=lxc' /proc/1/environ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 15:15:28 +02:00
										 |  |  |     # see lxc_init_container_env | 
					
						
							| 
									
										
										
										
											2020-03-18 15:34:46 +01:00
										 |  |  |     [[ -f /.lxcenv ]] | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 18:05:46 +01:00
										 |  |  | LXC_ENV_FOLDER= | 
					
						
							|  |  |  | if in_container; then | 
					
						
							| 
									
										
										
										
											2020-03-30 11:03:46 +02:00
										 |  |  |     # shellcheck disable=SC2034 | 
					
						
							| 
									
										
										
										
											2020-12-26 11:43:18 +01:00
										 |  |  |     LXC_ENV_FOLDER="lxc-env/$(hostname)/" | 
					
						
							| 
									
										
										
										
											2021-02-22 19:38:45 +01:00
										 |  |  |     PY_ENV="${LXC_ENV_FOLDER}${PY_ENV}" | 
					
						
							|  |  |  |     PY_ENV_BIN="${LXC_ENV_FOLDER}${PY_ENV_BIN}" | 
					
						
							|  |  |  |     PYDIST="${LXC_ENV_FOLDER}${PYDIST}" | 
					
						
							|  |  |  |     PYBUILD="${LXC_ENV_FOLDER}${PYBUILD}" | 
					
						
							| 
									
										
										
										
											2021-02-26 17:23:12 +01:00
										 |  |  |     DOCS_DIST="${LXC_ENV_FOLDER}${DOCS_DIST}" | 
					
						
							|  |  |  |     DOCS_BUILD="${LXC_ENV_FOLDER}${DOCS_BUILD}" | 
					
						
							| 
									
										
										
										
											2020-03-23 18:05:46 +01:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 15:15:28 +02:00
										 |  |  | lxc_init_container_env() { | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 15:15:28 +02:00
										 |  |  |     # usage: lxc_init_container_env <name> | 
					
						
							| 
									
										
										
										
											2020-03-18 15:34:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 15:15:28 +02:00
										 |  |  |     # Create a /.lxcenv file in the root folder.  Call this once after the | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |     # container is initial started and before installing any boilerplate stuff. | 
					
						
							| 
									
										
										
										
											2020-03-18 15:34:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     info_msg "create /.lxcenv in container $1" | 
					
						
							|  |  |  |     cat <<EOF | lxc exec "${1}" -- bash | prefix_stdout "[${_BBlue}${1}${_creset}] " | 
					
						
							|  |  |  | touch "/.lxcenv" | 
					
						
							|  |  |  | ls -l "/.lxcenv" | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-18 17:47:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # apt packages | 
					
						
							| 
									
										
										
										
											2024-08-20 16:43:49 +02:00
										 |  |  | LXC_BASE_PACKAGES_debian="bash git build-essential python3 python3-venv python-is-python3" | 
					
						
							| 
									
										
										
										
											2020-03-18 17:47:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # pacman packages | 
					
						
							| 
									
										
										
										
											2020-12-18 22:31:13 +01:00
										 |  |  | LXC_BASE_PACKAGES_arch="bash git base-devel python" | 
					
						
							| 
									
										
										
										
											2020-03-18 17:47:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # dnf packages | 
					
						
							| 
									
										
										
										
											2020-12-18 22:31:13 +01:00
										 |  |  | LXC_BASE_PACKAGES_fedora="bash git @development-tools python" | 
					
						
							| 
									
										
										
										
											2020-03-18 17:47:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | # yum packages | 
					
						
							| 
									
										
										
										
											2020-12-18 22:32:05 +01:00
										 |  |  | LXC_BASE_PACKAGES_centos="bash git python3" | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-19 09:17:28 +02:00
										 |  |  | lxc_distro_setup() { | 
					
						
							|  |  |  |     case $DIST_ID in | 
					
						
							|  |  |  |         ubuntu|debian) LXC_BASE_PACKAGES="${LXC_BASE_PACKAGES_debian}" ;; | 
					
						
							|  |  |  |         arch)          LXC_BASE_PACKAGES="${LXC_BASE_PACKAGES_arch}" ;; | 
					
						
							|  |  |  |         fedora)        LXC_BASE_PACKAGES="${LXC_BASE_PACKAGES_fedora}" ;; | 
					
						
							|  |  |  |         centos)        LXC_BASE_PACKAGES="${LXC_BASE_PACKAGES_centos}" ;; | 
					
						
							|  |  |  |         *) err_msg "$DIST_ID-$DIST_VERS: pkg_install LXC_BASE_PACKAGES not yet implemented" ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-18 17:47:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | lxc_install_base_packages() { | 
					
						
							|  |  |  |     info_msg "install LXC_BASE_PACKAGES in container $1" | 
					
						
							| 
									
										
										
										
											2020-12-18 22:32:05 +01:00
										 |  |  |     case $DIST_ID in | 
					
						
							|  |  |  |         centos) yum groupinstall "Development Tools" -y  ;; | 
					
						
							|  |  |  |     esac | 
					
						
							| 
									
										
										
										
											2020-03-18 17:47:48 +01:00
										 |  |  |     pkg_install "${LXC_BASE_PACKAGES}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 17:08:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | lxc_image_copy() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-02 17:23:18 +01:00
										 |  |  |     # usage: lxc_image_copy <remote image> <local image> | 
					
						
							| 
									
										
										
										
											2020-04-03 17:08:42 +02:00
										 |  |  |     # | 
					
						
							| 
									
										
										
										
											2021-01-02 17:23:18 +01:00
										 |  |  |     #        lxc_image_copy "images:ubuntu/20.04"  "ubu2004" | 
					
						
							| 
									
										
										
										
											2020-04-03 17:08:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if lxc_image_exists "local:${LXC_SUITE[i+1]}"; then | 
					
						
							|  |  |  |         info_msg "image ${LXC_SUITE[i]} already copied --> ${LXC_SUITE[i+1]}" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         info_msg "copy image locally ${LXC_SUITE[i]} --> ${LXC_SUITE[i+1]}" | 
					
						
							|  |  |  |         lxc image copy "${LXC_SUITE[i]}" local: \
 | 
					
						
							|  |  |  |             --alias  "${LXC_SUITE[i+1]}" | prefix_stdout | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lxc_init_container() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: lxc_init_container <image name> <container name> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local image_name="$1" | 
					
						
							|  |  |  |     local container_name="$2" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if lxc info "${container_name}" &>/dev/null; then | 
					
						
							|  |  |  |         info_msg "container '${container_name}' already exists" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         info_msg "create container instance: ${container_name}" | 
					
						
							|  |  |  |         lxc init "local:${image_name}" "${container_name}" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  | lxc_exists(){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage: lxc_exists <name> || echo "container <name> does not exists" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     lxc info "$1" &>/dev/null | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lxc_image_exists(){ | 
					
						
							|  |  |  |     # usage: lxc_image_exists <alias> || echo "image <alias> does locally not exists" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     lxc image info "local:$1" &>/dev/null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lxc_delete_container() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  usage: lxc_delete_container <container-name> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if lxc info "$1" &>/dev/null; then | 
					
						
							|  |  |  |         info_msg "stop & delete instance ${_BBlue}${1}${_creset}" | 
					
						
							|  |  |  |         lxc stop "$1" &>/dev/null | 
					
						
							|  |  |  |         lxc delete "$1" | prefix_stdout | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         warn_msg "instance '$1' does not exist / can't delete :o" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lxc_delete_local_image() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  usage: lxc_delete_local_image <container-name> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "delete image 'local:$i'" | 
					
						
							|  |  |  |     lxc image delete "local:$i" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # IP | 
					
						
							|  |  |  | # -- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | global_IPs(){ | 
					
						
							|  |  |  |     # usage: global_IPS | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # print list of host's SCOPE global addresses and adapters e.g:: | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #   $ global_IPs | 
					
						
							|  |  |  |     #   enp4s0|192.168.1.127 | 
					
						
							|  |  |  |     #   lxdbr0|10.246.86.1 | 
					
						
							|  |  |  |     #   lxdbr0|fd42:8c58:2cd:b73f::1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ip -o addr show | sed -nr 's/[0-9]*:\s*([a-z0-9]*).*inet[6]?\s*([a-z0-9.:]*).*scope global.*/\1|\2/p' | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | primary_ip() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case $DIST_ID in | 
					
						
							|  |  |  |         arch) | 
					
						
							| 
									
										
										
										
											2020-04-10 14:00:52 +02:00
										 |  |  |             ip -o addr show \
 | 
					
						
							|  |  |  |                 | sed -nr 's/[0-9]*:\s*([a-z0-9]*).*inet[6]?\s*([a-z0-9.:]*).*scope global.*/\2/p' \
 | 
					
						
							|  |  |  |                 | head -n 1 | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-04-10 14:00:52 +02:00
										 |  |  |         *)  hostname -I | cut -d' ' -f1 ;; | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # URL | 
					
						
							|  |  |  | # --- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | url_replace_hostname(){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # usage:  url_replace_hostname <url> <new hostname> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # to replace hostname by primary IP:: | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #   url_replace_hostname http://searx-ubu1604/morty $(primary_ip) | 
					
						
							|  |  |  |     #   http://10.246.86.250/morty | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 14:00:52 +02:00
										 |  |  |     # shellcheck disable=SC2001 | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     echo "$1" | sed "s|\(http[s]*://\)[^/]*\(.*\)|\1$2\2|" | 
					
						
							|  |  |  | } |