#!/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 # ---------------------------------------------------------------------------- # config # ---------------------------------------------------------------------------- # # read also: # - https://lxd.readthedocs.io/en/latest/ # name of https://images.linuxcontainers.org LINUXCONTAINERS_ORG_NAME="${LINUXCONTAINERS_ORG_NAME:-images}" HOST_PREFIX="${HOST_PREFIX:-searx}" TEST_IMAGES=( "$LINUXCONTAINERS_ORG_NAME:ubuntu/18.04" "ubu1804" "$LINUXCONTAINERS_ORG_NAME:ubuntu/19.04" "ubu1904" # TODO: installation of searx & filtron not yet implemented .. # #"$LINUXCONTAINERS_ORG_NAME:archlinux" "archlinux" #"$LINUXCONTAINERS_ORG_NAME:fedora/31" "fedora31" ) ubu1804_boilerplate=" export DEBIAN_FRONTEND=noninteractive apt-get install -y git curl wget " ubu1904_boilerplate="$ubu1804_boilerplate" REMOTE_IMAGES=() LOCAL_IMAGES=() for ((i=0; i<${#TEST_IMAGES[@]}; i+=2)); do REMOTE_IMAGES=("${REMOTE_IMAGES[@]}" "${TEST_IMAGES[i]}") LOCAL_IMAGES=("${LOCAL_IMAGES[@]}" "${HOST_PREFIX}-${TEST_IMAGES[i+1]}") done HOST_USER="${SUDO_USER:-$USER}" HOST_USER_ID=$(id -u "${HOST_USER}") HOST_GROUP_ID=$(id -g "${HOST_USER}") # ---------------------------------------------------------------------------- usage() { # ---------------------------------------------------------------------------- cat </dev/null; then info_msg "image ${TEST_IMAGES[i]} already copied --> ${TEST_IMAGES[i+1]}" else info_msg "copy image locally ${TEST_IMAGES[i]} --> ${TEST_IMAGES[i+1]}" lxc image copy "${TEST_IMAGES[i]}" local: \ --alias "${TEST_IMAGES[i+1]}" | prefix_stdout fi done } lxc_delete_images_localy() { echo for i in "${LOCAL_IMAGES[@]}"; do info_msg "delete image 'local:$i'" lxc image delete "local:$i" done #lxc image list local: } # container # --------- lxc_cmd() { for i in "${LOCAL_IMAGES[@]}"; do info_msg "lxc $* $i" lxc "$@" "$i" done } lxc_init_containers() { for i in "${LOCAL_IMAGES[@]}"; do if lxc info "$i" &>/dev/null; then info_msg "conatiner '$i' already exists" else info_msg "create conatiner instance: $i" lxc init "local:$i" "$i" fi done } lxc_config_containers() { for i in "${LOCAL_IMAGES[@]}"; do info_msg "configure container: ${_BBlue}${i}${_creset}" info_msg "map uid/gid from host to container" # https://lxd.readthedocs.io/en/latest/userns-idmap/#custom-idmaps echo -e -n "uid $HOST_USER_ID 1000\\ngid $HOST_GROUP_ID 1000"\ | lxc config set "$i" raw.idmap - info_msg "share ${REPO_ROOT} (repo_share) from HOST into container" # https://lxd.readthedocs.io/en/latest/instances/#type-disk lxc config device add "$i" repo_share disk \ source="${REPO_ROOT}" \ path="/share/$(basename "${REPO_ROOT}")" &>/dev/null # lxc config show "$i" && wait_key done } lxc_boilerplate_containers() { local shortname local boilerplate_script for ((i=0; i<${#TEST_IMAGES[@]}; i+=2)); do shortname="${TEST_IMAGES[i+1]}" info_msg "install boilerplate: ${_BBlue}${HOST_PREFIX}-${shortname}${_creset}" lxc start -q "${HOST_PREFIX}-${shortname}" &>/dev/null boilerplate_script="${shortname}_boilerplate" boilerplate_script="${!boilerplate_script}" if [[ ! -z "${boilerplate_script}" ]]; then echo "$boilerplate_script" \ | lxc exec "${HOST_PREFIX}-${shortname}" -- bash \ | prefix_stdout " ${HOST_PREFIX}-${shortname} | " else warn_msg "no boilerplate for instance '$i'" fi done } lxc_delete_containers() { for i in "${LOCAL_IMAGES[@]}"; do if lxc info "$i" &>/dev/null; then info_msg "stop & delete instance '$i'" lxc stop "$i" &>/dev/null lxc delete "$i" | prefix_stdout else warn_msg "instance '$i' does not exist / can't delete :o" fi done } # subordinates # ------------ # # see man: subgid(5), subuid(5), https://lxd.readthedocs.io/en/latest/userns-idmap # # E.g. in the HOST you have uid=1001(user) and/or gid=1001(user) :: # # root:1001:1 # # in the CONTAINER:: # # config: # raw.idmap: | # uid 1001 1000 # gid 1001 1000 add_subordinate_ids() { if grep "root:${HOST_USER_ID}:1" /etc/subuid -qs; then info_msg "lxd already has permission to map ${HOST_USER_ID}'s user/group id through" else info_msg "add lxd permission to map ${HOST_USER_ID}'s user/group id through" usermod --add-subuids "${HOST_USER_ID}-${HOST_USER_ID}" \ --add-subgids "${HOST_GROUP_ID}-${HOST_GROUP_ID}" root fi } del_subordinate_ids() { local out if grep "root:${HOST_USER_ID}:1" /etc/subuid -qs; then # TODO: root user is always in use by process 1, how can we remove subordinates? info_msg "remove lxd permission to map ${HOST_USER_ID}'s user/group id through" out=$(usermod --del-subuids "${HOST_USER_ID}-${HOST_USER_ID}" --del-subgids "${HOST_GROUP_ID}-${HOST_GROUP_ID}" root 2>&1) if [ ! -z $? ]; then err_msg "$out" fi else info_msg "lxd does not have permission to map ${HOST_USER_ID}'s user/group id through" fi } # ---------------------------------------------------------------------------- main "$@" # ----------------------------------------------------------------------------