2020-02-08 18:12:28 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*-
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
# shellcheck source=utils/lib.sh
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/lib.sh"
|
|
|
|
source_dot_config
|
2021-06-23 10:39:49 +00:00
|
|
|
# shellcheck source=utils/brand.env
|
|
|
|
source "${REPO_ROOT}/utils/brand.env"
|
2020-03-07 19:24:08 +00:00
|
|
|
|
|
|
|
# load environment of the LXC suite
|
|
|
|
LXC_ENV="${LXC_ENV:-${REPO_ROOT}/utils/lxc-searx.env}"
|
|
|
|
source "$LXC_ENV"
|
|
|
|
lxc_set_suite_env
|
2020-02-08 18:12:28 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# config
|
|
|
|
# ----------------------------------------------------------------------------
|
2020-02-13 17:25:03 +00:00
|
|
|
#
|
|
|
|
# read also:
|
|
|
|
# - https://lxd.readthedocs.io/en/latest/
|
2020-02-08 18:12:28 +00:00
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
LXC_HOST_PREFIX="${LXC_HOST_PREFIX:-test}"
|
2020-02-08 18:12:28 +00:00
|
|
|
|
2020-12-18 16:10:49 +00:00
|
|
|
# Location in the container where all folders from HOST are mounted
|
2020-02-18 17:20:03 +00:00
|
|
|
LXC_SHARE_FOLDER="/share"
|
2020-02-26 18:07:55 +00:00
|
|
|
LXC_REPO_ROOT="${LXC_SHARE_FOLDER}/$(basename "${REPO_ROOT}")"
|
2020-02-18 17:20:03 +00:00
|
|
|
|
2021-03-03 16:52:50 +00:00
|
|
|
ubu1804_boilerplate="
|
2020-02-16 17:18:15 +00:00
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
2020-02-18 17:40:34 +00:00
|
|
|
apt-get update -y
|
|
|
|
apt-get upgrade -y
|
2020-02-16 17:18:15 +00:00
|
|
|
apt-get install -y git curl wget
|
|
|
|
"
|
|
|
|
ubu1904_boilerplate="$ubu1804_boilerplate"
|
2020-03-07 19:24:08 +00:00
|
|
|
|
2020-03-02 18:01:08 +00:00
|
|
|
# shellcheck disable=SC2034
|
2020-03-07 19:24:08 +00:00
|
|
|
ubu2004_boilerplate="
|
2021-01-02 16:23:18 +00:00
|
|
|
$ubu1904_boilerplate
|
2020-03-07 19:24:08 +00:00
|
|
|
echo 'Set disable_coredump false' >> /etc/sudo.conf
|
|
|
|
"
|
2020-02-16 17:18:15 +00:00
|
|
|
|
2021-01-23 12:24:50 +00:00
|
|
|
# shellcheck disable=SC2034
|
2021-01-02 16:27:16 +00:00
|
|
|
ubu2010_boilerplate="$ubu1904_boilerplate"
|
|
|
|
|
2020-02-18 17:40:34 +00:00
|
|
|
# shellcheck disable=SC2034
|
|
|
|
archlinux_boilerplate="
|
2021-06-28 07:27:10 +00:00
|
|
|
pacman --noprogressbar -Syu --noconfirm
|
|
|
|
pacman --noprogressbar -S --noconfirm inetutils git curl wget sudo
|
2020-02-23 11:10:45 +00:00
|
|
|
echo 'Set disable_coredump false' >> /etc/sudo.conf
|
2020-02-18 17:40:34 +00:00
|
|
|
"
|
|
|
|
|
2020-02-23 11:10:45 +00:00
|
|
|
# shellcheck disable=SC2034
|
2021-03-05 12:17:47 +00:00
|
|
|
fedora33_boilerplate="
|
2020-02-18 17:40:34 +00:00
|
|
|
dnf update -y
|
2020-02-23 11:10:45 +00:00
|
|
|
dnf install -y git curl wget hostname
|
|
|
|
echo 'Set disable_coredump false' >> /etc/sudo.conf
|
2020-02-18 17:40:34 +00:00
|
|
|
"
|
|
|
|
|
2020-08-01 20:12:44 +00:00
|
|
|
# shellcheck disable=SC2034
|
|
|
|
centos7_boilerplate="
|
|
|
|
yum update -y
|
2021-03-03 18:37:03 +00:00
|
|
|
yum install -y git curl wget hostname sudo which
|
2020-08-01 20:12:44 +00:00
|
|
|
echo 'Set disable_coredump false' >> /etc/sudo.conf
|
|
|
|
"
|
|
|
|
|
2020-02-08 18:12:28 +00:00
|
|
|
REMOTE_IMAGES=()
|
2020-03-07 19:24:08 +00:00
|
|
|
CONTAINERS=()
|
2020-02-08 18:12:28 +00:00
|
|
|
LOCAL_IMAGES=()
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
for ((i=0; i<${#LXC_SUITE[@]}; i+=2)); do
|
|
|
|
REMOTE_IMAGES=("${REMOTE_IMAGES[@]}" "${LXC_SUITE[i]}")
|
|
|
|
CONTAINERS=("${CONTAINERS[@]}" "${LXC_HOST_PREFIX}-${LXC_SUITE[i+1]}")
|
|
|
|
LOCAL_IMAGES=("${LOCAL_IMAGES[@]}" "${LXC_SUITE[i+1]}")
|
2020-02-08 18:12:28 +00:00
|
|
|
done
|
|
|
|
|
2020-02-13 17:25:03 +00:00
|
|
|
HOST_USER="${SUDO_USER:-$USER}"
|
|
|
|
HOST_USER_ID=$(id -u "${HOST_USER}")
|
|
|
|
HOST_GROUP_ID=$(id -g "${HOST_USER}")
|
|
|
|
|
2020-02-08 18:12:28 +00:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
usage() {
|
|
|
|
# ----------------------------------------------------------------------------
|
2020-03-07 19:24:08 +00:00
|
|
|
_cmd="$(basename "$0")"
|
2020-02-08 18:12:28 +00:00
|
|
|
cat <<EOF
|
|
|
|
usage::
|
2020-04-03 15:08:42 +00:00
|
|
|
$_cmd build [containers|<name>]
|
2020-03-07 19:24:08 +00:00
|
|
|
$_cmd copy [images]
|
2020-03-08 17:30:25 +00:00
|
|
|
$_cmd remove [containers|<name>|images]
|
2020-03-07 19:24:08 +00:00
|
|
|
$_cmd [start|stop] [containers|<name>]
|
2020-04-03 15:08:42 +00:00
|
|
|
$_cmd show [images|suite|info|config [<name>]]
|
2020-03-08 17:30:25 +00:00
|
|
|
$_cmd cmd [--|<name>] '...'
|
2020-04-04 10:40:14 +00:00
|
|
|
$_cmd install [suite|base [<name>]]
|
2020-03-07 19:24:08 +00:00
|
|
|
|
|
|
|
build
|
2020-04-03 15:08:42 +00:00
|
|
|
:containers: build, launch all containers and 'install base' packages
|
|
|
|
:<name>: build, launch container <name> and 'install base' packages
|
2020-03-07 19:24:08 +00:00
|
|
|
copy:
|
|
|
|
:images: copy remote images of the suite into local storage
|
|
|
|
remove
|
|
|
|
:containers: delete all 'containers' or only <container-name>
|
|
|
|
:images: delete local images of the suite
|
2020-02-13 17:25:03 +00:00
|
|
|
start/stop
|
2020-03-07 19:24:08 +00:00
|
|
|
:containers: start/stop all 'containers' from the suite
|
2020-04-03 15:08:42 +00:00
|
|
|
:<name>: start/stop container <name> from suite
|
2020-02-27 18:13:03 +00:00
|
|
|
show
|
2020-04-03 15:08:42 +00:00
|
|
|
:info: show info of all (or <name>) containers from LXC suite
|
|
|
|
:config: show config of all (or <name>) containers from the LXC suite
|
2020-04-07 16:31:51 +00:00
|
|
|
:suite: show services of all (or <name>) containers from the LXC suite
|
2020-03-07 19:24:08 +00:00
|
|
|
:images: show information of local images
|
|
|
|
cmd
|
2020-04-11 11:19:11 +00:00
|
|
|
use single qoutes to evaluate in container's bash, e.g.: 'echo \$(hostname)'
|
2020-03-08 17:30:25 +00:00
|
|
|
-- run command '...' in all containers of the LXC suite
|
|
|
|
:<name>: run command '...' in container <name>
|
2020-02-26 18:07:55 +00:00
|
|
|
install
|
2020-03-18 16:47:48 +00:00
|
|
|
:base: prepare LXC; install basic packages
|
2020-04-04 10:40:14 +00:00
|
|
|
:suite: install LXC ${LXC_SUITE_NAME} suite into all (or <name>) containers
|
2020-02-08 18:12:28 +00:00
|
|
|
|
2020-03-08 01:41:45 +00:00
|
|
|
EOF
|
|
|
|
usage_containers
|
|
|
|
[ -n "${1+x}" ] && err_msg "$1"
|
|
|
|
}
|
2020-02-08 18:12:28 +00:00
|
|
|
|
2020-03-08 01:41:45 +00:00
|
|
|
usage_containers() {
|
2020-04-13 09:34:28 +00:00
|
|
|
lxc_suite_install_info
|
2020-02-16 19:07:37 +00:00
|
|
|
[ -n "${1+x}" ] && err_msg "$1"
|
2020-02-08 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 17:18:15 +00:00
|
|
|
lxd_info() {
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
|
|
|
|
LXD is needed, to install run::
|
|
|
|
|
|
|
|
snap install lxd
|
2020-02-16 21:26:03 +00:00
|
|
|
lxd init --auto
|
2020-02-16 17:18:15 +00:00
|
|
|
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2020-02-08 18:12:28 +00:00
|
|
|
main() {
|
|
|
|
|
2020-02-16 17:18:15 +00:00
|
|
|
local exit_val
|
2020-02-08 18:12:28 +00:00
|
|
|
local _usage="unknown or missing $1 command $2"
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
# don't check prerequisite when in recursion
|
2021-02-22 19:10:18 +00:00
|
|
|
if [[ ! $1 == __* ]] && [[ ! $1 == --help ]]; then
|
2020-03-31 16:25:40 +00:00
|
|
|
if ! in_container; then
|
|
|
|
! required_commands lxc && lxd_info && exit 42
|
|
|
|
fi
|
2021-02-22 19:10:18 +00:00
|
|
|
[[ -z $LXC_SUITE ]] && err_msg "missing LXC_SUITE" && exit 42
|
2020-02-27 18:13:03 +00:00
|
|
|
fi
|
2020-03-07 19:24:08 +00:00
|
|
|
|
2020-02-08 18:12:28 +00:00
|
|
|
case $1 in
|
2020-04-11 11:19:11 +00:00
|
|
|
--getenv) var="$2"; echo "${!var}"; exit 0;;
|
2020-02-08 18:12:28 +00:00
|
|
|
-h|--help) usage; exit 0;;
|
|
|
|
|
|
|
|
build)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-04-03 15:08:42 +00:00
|
|
|
${LXC_HOST_PREFIX}-*) build_container "$2" ;;
|
2020-04-11 11:19:11 +00:00
|
|
|
''|--|containers) build_all_containers ;;
|
2020-03-07 19:24:08 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
copy)
|
|
|
|
case $2 in
|
|
|
|
''|images) lxc_copy_images_localy;;
|
2020-02-08 18:12:28 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
2020-02-16 21:26:03 +00:00
|
|
|
remove)
|
2020-02-08 18:12:28 +00:00
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-04-11 11:19:11 +00:00
|
|
|
''|--|containers) remove_containers ;;
|
2020-03-07 19:24:08 +00:00
|
|
|
images) lxc_delete_images_localy ;;
|
|
|
|
${LXC_HOST_PREFIX}-*)
|
2020-04-13 09:34:28 +00:00
|
|
|
! lxc_exists "$2" && warn_msg "container not yet exists: $2" && exit 0
|
2020-04-03 15:08:42 +00:00
|
|
|
if ask_yn "Do you really want to delete container $2"; then
|
2020-03-07 19:24:08 +00:00
|
|
|
lxc_delete_container "$2"
|
|
|
|
fi
|
|
|
|
;;
|
2020-03-08 01:41:45 +00:00
|
|
|
*) usage "uknown or missing container <name> $2"; exit 42;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
2020-02-13 17:25:03 +00:00
|
|
|
start|stop)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-04-11 11:19:11 +00:00
|
|
|
''|--|containers) lxc_cmd "$1" ;;
|
2020-03-07 19:24:08 +00:00
|
|
|
${LXC_HOST_PREFIX}-*)
|
2020-03-08 01:41:45 +00:00
|
|
|
! lxc_exists "$2" && usage_containers "unknown container: $2" && exit 42
|
2020-02-18 17:20:03 +00:00
|
|
|
info_msg "lxc $1 $2"
|
|
|
|
lxc "$1" "$2" | prefix_stdout "[${_BBlue}${i}${_creset}] "
|
|
|
|
;;
|
2020-03-08 01:41:45 +00:00
|
|
|
*) usage "uknown or missing container <name> $2"; exit 42;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
show)
|
2020-02-13 17:25:03 +00:00
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-04-03 15:08:42 +00:00
|
|
|
suite)
|
|
|
|
case $3 in
|
|
|
|
${LXC_HOST_PREFIX}-*)
|
|
|
|
lxc exec -t "$3" -- "${LXC_REPO_ROOT}/utils/lxc.sh" __show suite \
|
|
|
|
| prefix_stdout "[${_BBlue}$3${_creset}] "
|
|
|
|
;;
|
2020-04-13 09:34:28 +00:00
|
|
|
*) show_suite;;
|
2020-04-03 15:08:42 +00:00
|
|
|
esac
|
|
|
|
;;
|
2020-03-07 19:24:08 +00:00
|
|
|
images) show_images ;;
|
|
|
|
config)
|
2020-04-03 15:08:42 +00:00
|
|
|
case $3 in
|
|
|
|
${LXC_HOST_PREFIX}-*)
|
2020-04-04 10:40:14 +00:00
|
|
|
! lxc_exists "$3" && usage_containers "unknown container: $3" && exit 42
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc config show "$3" | prefix_stdout "[${_BBlue}${3}${_creset}] "
|
|
|
|
;;
|
2020-04-13 09:34:28 +00:00
|
|
|
*)
|
2020-04-03 15:08:42 +00:00
|
|
|
rst_title "container configurations"
|
|
|
|
echo
|
|
|
|
lxc list "$LXC_HOST_PREFIX-"
|
|
|
|
echo
|
|
|
|
lxc_cmd config show
|
|
|
|
;;
|
|
|
|
esac
|
2020-03-07 19:24:08 +00:00
|
|
|
;;
|
|
|
|
info)
|
2020-04-03 15:08:42 +00:00
|
|
|
case $3 in
|
|
|
|
${LXC_HOST_PREFIX}-*)
|
2020-04-04 10:40:14 +00:00
|
|
|
! lxc_exists "$3" && usage_containers "unknown container: $3" && exit 42
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc info "$3" | prefix_stdout "[${_BBlue}${3}${_creset}] "
|
|
|
|
;;
|
2020-04-13 09:34:28 +00:00
|
|
|
*)
|
2020-04-03 15:08:42 +00:00
|
|
|
rst_title "container info"
|
|
|
|
echo
|
|
|
|
lxc_cmd info
|
|
|
|
;;
|
|
|
|
esac
|
2020-02-27 18:13:03 +00:00
|
|
|
;;
|
2020-02-13 17:25:03 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
__show)
|
2020-03-18 16:47:48 +00:00
|
|
|
# wrapped show commands, called once in each container
|
2020-02-27 18:13:03 +00:00
|
|
|
case $2 in
|
2020-03-07 19:24:08 +00:00
|
|
|
suite) lxc_suite_info ;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
2020-02-13 17:25:03 +00:00
|
|
|
cmd)
|
|
|
|
sudo_or_exit
|
|
|
|
shift
|
2020-03-07 19:24:08 +00:00
|
|
|
case $1 in
|
2020-03-15 16:01:36 +00:00
|
|
|
--) shift; lxc_exec "$@" ;;
|
2020-03-07 19:24:08 +00:00
|
|
|
${LXC_HOST_PREFIX}-*)
|
2020-03-08 01:41:45 +00:00
|
|
|
! lxc_exists "$1" && usage_containers "unknown container: $1" && exit 42
|
2020-03-07 19:24:08 +00:00
|
|
|
local name=$1
|
|
|
|
shift
|
|
|
|
lxc_exec_cmd "${name}" "$@"
|
|
|
|
;;
|
2020-04-04 10:40:14 +00:00
|
|
|
*) usage_containers "unknown container: $1" && exit 42
|
|
|
|
esac
|
2020-02-13 17:25:03 +00:00
|
|
|
;;
|
2020-02-26 18:07:55 +00:00
|
|
|
install)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-03-31 16:25:40 +00:00
|
|
|
suite|base)
|
2020-04-04 10:40:14 +00:00
|
|
|
case $3 in
|
|
|
|
${LXC_HOST_PREFIX}-*)
|
|
|
|
! lxc_exists "$3" && usage_containers "unknown container: $3" && exit 42
|
|
|
|
lxc_exec_cmd "$3" "${LXC_REPO_ROOT}/utils/lxc.sh" __install "$2"
|
|
|
|
;;
|
2020-04-11 11:19:11 +00:00
|
|
|
''|--) lxc_exec "${LXC_REPO_ROOT}/utils/lxc.sh" __install "$2" ;;
|
2020-04-04 10:40:14 +00:00
|
|
|
*) usage_containers "unknown container: $3" && exit 42
|
|
|
|
esac
|
2020-03-18 16:47:48 +00:00
|
|
|
;;
|
2020-03-07 19:24:08 +00:00
|
|
|
*) usage "$_usage"; exit 42 ;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
__install)
|
2020-03-18 16:47:48 +00:00
|
|
|
# wrapped install commands, called once in each container
|
2020-03-30 09:03:46 +00:00
|
|
|
# shellcheck disable=SC2119
|
2020-02-27 18:13:03 +00:00
|
|
|
case $2 in
|
2020-03-07 19:24:08 +00:00
|
|
|
suite) lxc_suite_install ;;
|
2020-03-18 16:47:48 +00:00
|
|
|
base) FORCE_TIMEOUT=0 lxc_install_base_packages ;;
|
2020-02-27 18:13:03 +00:00
|
|
|
esac
|
|
|
|
;;
|
2020-03-02 18:00:19 +00:00
|
|
|
doc)
|
|
|
|
echo
|
|
|
|
echo ".. generic utils/lxc.sh documentation"
|
|
|
|
;;
|
2020-03-07 19:24:08 +00:00
|
|
|
-*) usage "unknown option $1"; exit 42;;
|
|
|
|
*) usage "unknown or missing command $1"; exit 42;;
|
2020-02-08 18:12:28 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2020-02-26 18:07:55 +00:00
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
build_all_containers() {
|
|
|
|
rst_title "Build all LXC containers of suite"
|
2020-04-07 16:31:51 +00:00
|
|
|
echo
|
2020-04-03 15:08:42 +00:00
|
|
|
usage_containers
|
2020-02-08 18:12:28 +00:00
|
|
|
lxc_copy_images_localy
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_init_all_containers
|
|
|
|
lxc_config_all_containers
|
|
|
|
lxc_boilerplate_all_containers
|
|
|
|
rst_title "install LXC base packages" section
|
2020-02-16 17:18:15 +00:00
|
|
|
echo
|
2020-03-18 16:47:48 +00:00
|
|
|
lxc_exec "${LXC_REPO_ROOT}/utils/lxc.sh" __install base
|
|
|
|
echo
|
2020-03-07 19:24:08 +00:00
|
|
|
lxc list "$LXC_HOST_PREFIX"
|
2020-02-08 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
build_container() {
|
|
|
|
rst_title "Build container $1"
|
|
|
|
|
|
|
|
local remote_image
|
|
|
|
local container
|
|
|
|
local image
|
|
|
|
local boilerplate_script
|
|
|
|
|
|
|
|
for ((i=0; i<${#LXC_SUITE[@]}; i+=2)); do
|
|
|
|
if [ "${LXC_HOST_PREFIX}-${LXC_SUITE[i+1]}" = "$1" ]; then
|
|
|
|
remote_image="${LXC_SUITE[i]}"
|
|
|
|
container="${LXC_HOST_PREFIX}-${LXC_SUITE[i+1]}"
|
|
|
|
image="${LXC_SUITE[i+1]}"
|
|
|
|
boilerplate_script="${image}_boilerplate"
|
|
|
|
boilerplate_script="${!boilerplate_script}"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo
|
|
|
|
if [ -z "$container" ]; then
|
|
|
|
err_msg "container $1 unknown"
|
|
|
|
usage_containers
|
|
|
|
return 42
|
|
|
|
fi
|
|
|
|
lxc_image_copy "${remote_image}" "${image}"
|
|
|
|
rst_title "init container" section
|
|
|
|
lxc_init_container "${image}" "${container}"
|
|
|
|
rst_title "configure container" section
|
|
|
|
lxc_config_container "${container}"
|
|
|
|
rst_title "run LXC boilerplate scripts" section
|
|
|
|
lxc_install_boilerplate "${container}" "$boilerplate_script"
|
|
|
|
echo
|
|
|
|
rst_title "install LXC base packages" section
|
|
|
|
lxc_exec_cmd "${container}" "${LXC_REPO_ROOT}/utils/lxc.sh" __install base \
|
|
|
|
| prefix_stdout "[${_BBlue}${container}${_creset}] "
|
|
|
|
echo
|
|
|
|
lxc list "$container"
|
|
|
|
}
|
|
|
|
|
|
|
|
remove_containers() {
|
|
|
|
rst_title "Remove all LXC containers of suite"
|
2020-03-07 19:24:08 +00:00
|
|
|
rst_para "existing containers matching ${_BGreen}$LXC_HOST_PREFIX-*${_creset}"
|
|
|
|
echo
|
|
|
|
lxc list "$LXC_HOST_PREFIX-"
|
|
|
|
echo -en "\\n${_BRed}LXC containers to delete::${_creset}\\n\\n ${CONTAINERS[*]}\\n" | $FMT
|
2020-04-13 09:34:28 +00:00
|
|
|
local default=Ny
|
|
|
|
[[ $FORCE_TIMEOUT = 0 ]] && default=Yn
|
|
|
|
if ask_yn "Do you really want to delete these containers" $default; then
|
2020-03-07 19:24:08 +00:00
|
|
|
for i in "${CONTAINERS[@]}"; do
|
|
|
|
lxc_delete_container "$i"
|
|
|
|
done
|
2020-02-08 18:12:28 +00:00
|
|
|
fi
|
2020-02-16 17:18:15 +00:00
|
|
|
echo
|
2020-03-07 19:24:08 +00:00
|
|
|
lxc list "$LXC_HOST_PREFIX-"
|
2020-02-08 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
2020-02-13 17:25:03 +00:00
|
|
|
# images
|
|
|
|
# ------
|
|
|
|
|
2020-02-08 18:12:28 +00:00
|
|
|
lxc_copy_images_localy() {
|
2020-03-07 19:24:08 +00:00
|
|
|
rst_title "copy images" section
|
|
|
|
for ((i=0; i<${#LXC_SUITE[@]}; i+=2)); do
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_image_copy "${LXC_SUITE[i]}" "${LXC_SUITE[i+1]}"
|
2020-02-08 18:12:28 +00:00
|
|
|
done
|
2020-03-07 19:24:08 +00:00
|
|
|
# lxc image list local: && wait_key
|
2020-02-08 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lxc_delete_images_localy() {
|
2020-03-07 19:24:08 +00:00
|
|
|
rst_title "Delete LXC images"
|
|
|
|
rst_para "local existing images"
|
2020-02-08 18:12:28 +00:00
|
|
|
echo
|
2020-03-07 19:24:08 +00:00
|
|
|
lxc image list local:
|
|
|
|
echo -en "\\n${_BRed}LXC images to delete::${_creset}\\n\\n ${LOCAL_IMAGES[*]}\\n"
|
|
|
|
if ask_yn "Do you really want to delete these images"; then
|
|
|
|
for i in "${LOCAL_IMAGES[@]}"; do
|
|
|
|
lxc_delete_local_image "$i"
|
|
|
|
done
|
|
|
|
fi
|
2020-03-30 16:47:01 +00:00
|
|
|
|
|
|
|
for i in $(lxc image list --format csv | grep '^,' | sed 's/,\([^,]*\).*$/\1/'); do
|
|
|
|
if ask_yn "Image $i has no alias, do you want to delete the image?" Yn; then
|
|
|
|
lxc_delete_local_image "$i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
echo
|
|
|
|
lxc image list local:
|
|
|
|
}
|
|
|
|
|
|
|
|
show_images(){
|
|
|
|
rst_title "local images"
|
|
|
|
echo
|
|
|
|
lxc image list local:
|
|
|
|
echo -en "\\n${_Green}LXC suite images::${_creset}\\n\\n ${LOCAL_IMAGES[*]}\\n"
|
|
|
|
wait_key
|
2020-02-08 18:12:28 +00:00
|
|
|
for i in "${LOCAL_IMAGES[@]}"; do
|
2020-03-07 19:24:08 +00:00
|
|
|
if lxc_image_exists "$i"; then
|
|
|
|
info_msg "lxc image info ${_BBlue}${i}${_creset}"
|
|
|
|
lxc image info "$i" | prefix_stdout "[${_BBlue}${i}${_creset}] "
|
|
|
|
else
|
|
|
|
warn_msg "image ${_BBlue}$i${_creset} does not yet exists"
|
|
|
|
fi
|
2020-02-08 18:12:28 +00:00
|
|
|
done
|
2020-03-07 19:24:08 +00:00
|
|
|
|
2020-02-08 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
|
2020-02-13 17:25:03 +00:00
|
|
|
# container
|
|
|
|
# ---------
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
show_suite(){
|
|
|
|
rst_title "LXC suite ($LXC_HOST_PREFIX-*)"
|
|
|
|
echo
|
|
|
|
lxc list "$LXC_HOST_PREFIX-"
|
|
|
|
echo
|
|
|
|
for i in "${CONTAINERS[@]}"; do
|
|
|
|
if ! lxc_exists "$i"; then
|
|
|
|
warn_msg "container ${_BBlue}$i${_creset} does not yet exists"
|
|
|
|
else
|
|
|
|
lxc exec -t "${i}" -- "${LXC_REPO_ROOT}/utils/lxc.sh" __show suite \
|
|
|
|
| prefix_stdout "[${_BBlue}${i}${_creset}] "
|
2020-03-08 01:41:45 +00:00
|
|
|
echo
|
2020-03-07 19:24:08 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-02-13 17:25:03 +00:00
|
|
|
lxc_cmd() {
|
2020-03-07 19:24:08 +00:00
|
|
|
for i in "${CONTAINERS[@]}"; do
|
|
|
|
if ! lxc_exists "$i"; then
|
|
|
|
warn_msg "container ${_BBlue}$i${_creset} does not yet exists"
|
|
|
|
else
|
|
|
|
info_msg "lxc $* $i"
|
|
|
|
lxc "$@" "$i" | prefix_stdout "[${_BBlue}${i}${_creset}] "
|
|
|
|
fi
|
2020-02-13 17:25:03 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
lxc_exec_cmd() {
|
|
|
|
local name="$1"
|
|
|
|
shift
|
|
|
|
exit_val=
|
|
|
|
info_msg "[${_BBlue}${name}${_creset}] ${_BGreen}${*}${_creset}"
|
2020-03-15 16:01:36 +00:00
|
|
|
lxc exec -t --cwd "${LXC_REPO_ROOT}" "${name}" -- bash -c "$*"
|
2020-03-07 19:24:08 +00:00
|
|
|
exit_val=$?
|
|
|
|
if [[ $exit_val -ne 0 ]]; then
|
2020-03-08 01:41:45 +00:00
|
|
|
warn_msg "[${_BBlue}${name}${_creset}] exit code (${_BRed}${exit_val}${_creset}) from ${_BGreen}${*}${_creset}"
|
2020-03-07 19:24:08 +00:00
|
|
|
else
|
2020-03-08 01:41:45 +00:00
|
|
|
info_msg "[${_BBlue}${name}${_creset}] exit code (${exit_val}) from ${_BGreen}${*}${_creset}"
|
2020-03-07 19:24:08 +00:00
|
|
|
fi
|
2020-03-15 16:01:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lxc_exec() {
|
|
|
|
for i in "${CONTAINERS[@]}"; do
|
|
|
|
if ! lxc_exists "$i"; then
|
|
|
|
warn_msg "container ${_BBlue}$i${_creset} does not yet exists"
|
|
|
|
else
|
|
|
|
lxc_exec_cmd "${i}" "$@" | prefix_stdout "[${_BBlue}${i}${_creset}] "
|
|
|
|
fi
|
|
|
|
done
|
2020-03-07 19:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_init_all_containers() {
|
|
|
|
rst_title "init all containers" section
|
2020-02-18 17:20:03 +00:00
|
|
|
|
|
|
|
local image_name
|
|
|
|
local container_name
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
for ((i=0; i<${#LXC_SUITE[@]}; i+=2)); do
|
2020-04-07 16:31:51 +00:00
|
|
|
lxc_init_container "${LXC_SUITE[i+1]}" "${LXC_HOST_PREFIX}-${LXC_SUITE[i+1]}"
|
2020-02-08 18:12:28 +00:00
|
|
|
done
|
2020-02-13 17:25:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_config_all_containers() {
|
|
|
|
rst_title "configure all containers" section
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
for i in "${CONTAINERS[@]}"; do
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_config_container "${i}"
|
2020-02-16 17:18:15 +00:00
|
|
|
done
|
|
|
|
}
|
2020-02-13 17:25:03 +00:00
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_config_container() {
|
|
|
|
info_msg "[${_BBlue}$1${_creset}] configure container ..."
|
|
|
|
|
|
|
|
info_msg "[${_BBlue}$1${_creset}] map uid/gid from host to container"
|
|
|
|
# https://lxd.readthedocs.io/en/latest/userns-idmap/#custom-idmaps
|
|
|
|
echo -e -n "uid $HOST_USER_ID 0\\ngid $HOST_GROUP_ID 0"\
|
|
|
|
| lxc config set "$1" raw.idmap -
|
|
|
|
|
|
|
|
info_msg "[${_BBlue}$1${_creset}] share ${REPO_ROOT} (repo_share) from HOST into container"
|
|
|
|
# https://lxd.readthedocs.io/en/latest/instances/#type-disk
|
|
|
|
lxc config device add "$1" repo_share disk \
|
|
|
|
source="${REPO_ROOT}" \
|
|
|
|
path="${LXC_REPO_ROOT}" &>/dev/null
|
|
|
|
# lxc config show "$1" && wait_key
|
|
|
|
}
|
|
|
|
|
|
|
|
lxc_boilerplate_all_containers() {
|
|
|
|
rst_title "run LXC boilerplate scripts" section
|
2020-02-18 17:20:03 +00:00
|
|
|
|
2020-02-16 17:18:15 +00:00
|
|
|
local boilerplate_script
|
2020-04-03 15:08:42 +00:00
|
|
|
local image_name
|
2020-02-18 17:20:03 +00:00
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
for ((i=0; i<${#LXC_SUITE[@]}; i+=2)); do
|
2020-02-18 17:20:03 +00:00
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
image_name="${LXC_SUITE[i+1]}"
|
2020-02-18 17:20:03 +00:00
|
|
|
boilerplate_script="${image_name}_boilerplate"
|
2020-02-16 17:18:15 +00:00
|
|
|
boilerplate_script="${!boilerplate_script}"
|
2020-02-18 17:20:03 +00:00
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
lxc_install_boilerplate "${LXC_HOST_PREFIX}-${image_name}" "$boilerplate_script"
|
|
|
|
|
|
|
|
if [[ -z "${boilerplate_script}" ]]; then
|
|
|
|
err_msg "[${_BBlue}${container_name}${_creset}] no boilerplate for image '${image_name}'"
|
2020-03-15 16:01:36 +00:00
|
|
|
fi
|
2020-04-03 15:08:42 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
lxc_install_boilerplate() {
|
|
|
|
|
|
|
|
# usage: lxc_install_boilerplate <container-name> <string: shell commands ..>
|
|
|
|
#
|
|
|
|
# usage: lxc_install_boilerplate searx-archlinux "${archlinux_boilerplate}"
|
|
|
|
|
|
|
|
local container_name="$1"
|
|
|
|
local boilerplate_script="$2"
|
|
|
|
|
|
|
|
info_msg "[${_BBlue}${container_name}${_creset}] init .."
|
|
|
|
if lxc start -q "${container_name}" &>/dev/null; then
|
|
|
|
sleep 5 # guest needs some time to come up and get an IP
|
|
|
|
fi
|
2021-06-23 10:39:49 +00:00
|
|
|
if ! check_connectivity "${container_name}"; then
|
|
|
|
die 42 "Container ${container_name} has no internet connectivity!"
|
|
|
|
fi
|
2020-04-05 13:15:28 +00:00
|
|
|
lxc_init_container_env "${container_name}"
|
2020-04-03 15:08:42 +00:00
|
|
|
info_msg "[${_BBlue}${container_name}${_creset}] install /.lxcenv.mk .."
|
|
|
|
cat <<EOF | lxc exec "${container_name}" -- bash | prefix_stdout "[${_BBlue}${container_name}${_creset}] "
|
2020-03-15 16:01:36 +00:00
|
|
|
rm -f "/.lxcenv.mk"
|
|
|
|
ln -s "${LXC_REPO_ROOT}/utils/makefile.lxc" "/.lxcenv.mk"
|
|
|
|
ls -l "/.lxcenv.mk"
|
|
|
|
EOF
|
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
info_msg "[${_BBlue}${container_name}${_creset}] run LXC boilerplate scripts .."
|
|
|
|
if lxc start -q "${container_name}" &>/dev/null; then
|
|
|
|
sleep 5 # guest needs some time to come up and get an IP
|
|
|
|
fi
|
|
|
|
if [[ -n "${boilerplate_script}" ]]; then
|
|
|
|
echo "${boilerplate_script}" \
|
|
|
|
| lxc exec "${container_name}" -- bash \
|
|
|
|
| prefix_stdout "[${_BBlue}${container_name}${_creset}] "
|
|
|
|
fi
|
2020-02-08 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 10:39:49 +00:00
|
|
|
check_connectivity() {
|
|
|
|
local ret_val=0
|
|
|
|
info_msg "check internet connectivity ..."
|
|
|
|
if ! lxc exec "${1}" -- ping -c 1 8.8.8.8 &>/dev/null; then
|
|
|
|
ret_val=1
|
|
|
|
err_msg "no internet connectivity!"
|
|
|
|
info_msg "Most often the connectivity is blocked by a docker installation:"
|
|
|
|
info_msg "Whenever docker is started (reboot) it sets the iptables policy "
|
|
|
|
info_msg "for the FORWARD chain to DROP, see:"
|
2021-07-20 11:16:21 +00:00
|
|
|
info_msg " https://searxng.github.io/searxng/utils/lxc.sh.html#internet-connectivity-docker"
|
2021-06-23 10:39:49 +00:00
|
|
|
iptables-save | grep ":FORWARD"
|
|
|
|
fi
|
|
|
|
return $ret_val
|
|
|
|
}
|
2020-02-08 18:12:28 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
main "$@"
|
|
|
|
# ----------------------------------------------------------------------------
|