|
@ -108,8 +108,8 @@ EOF |
|
|
mkdir -p "$HOME/LXD/SHARED/$CONTAINER" |
|
|
mkdir -p "$HOME/LXD/SHARED/$CONTAINER" |
|
|
|
|
|
|
|
|
lxc config device add "$CONTAINER" SHARED disk source="$HOME/LXD/SHARED/$CONTAINER" path=/mnt/SHARED -q |
|
|
lxc config device add "$CONTAINER" SHARED disk source="$HOME/LXD/SHARED/$CONTAINER" path=/mnt/SHARED -q |
|
|
lxc config device add "$CONTAINER" TOOLBOX disk source=/TOOLBOX path=/TOOLBOX -q |
|
|
|
|
|
lxc config device add "$CONTAINER" MIAOU_BASH disk source=$(realpath /opt/miaou-bash) path=/opt/miaou-bash -q |
|
|
|
|
|
|
|
|
lxc config device add "$CONTAINER" TOOLBOX disk source=/TOOLBOX path=/TOOLBOX readonly=true -q |
|
|
|
|
|
lxc config device add "$CONTAINER" MIAOU_BASH disk source=$(realpath /opt/miaou-bash) path=/opt/miaou-bash readonly=true -q |
|
|
|
|
|
|
|
|
# environment variables |
|
|
# environment variables |
|
|
lxc config set "$CONTAINER" environment.PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/miaou-bash/tools:/TOOLBOX -q |
|
|
lxc config set "$CONTAINER" environment.PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/miaou-bash/tools:/TOOLBOX -q |
|
@ -117,7 +117,7 @@ EOF |
|
|
|
|
|
|
|
|
if [[ "$OPTION_NESTING" == true ]]; then |
|
|
if [[ "$OPTION_NESTING" == true ]]; then |
|
|
lxc config set "$CONTAINER" security.nesting true -q |
|
|
lxc config set "$CONTAINER" security.nesting true -q |
|
|
lxc config device add "$CONTAINER" miaou disk source=/opt/miaou path=/opt/miaou -q |
|
|
|
|
|
|
|
|
lxc config device add "$CONTAINER" miaou disk source=/opt/miaou path=/opt/miaou readonly=true -q |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
lxc start "$CONTAINER" -q |
|
|
lxc start "$CONTAINER" -q |
|
@ -164,6 +164,7 @@ EOF |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
if [[ "$OPTION_SSH" == true && "$OPTION_SAMEUSER" == true ]]; then |
|
|
if [[ "$OPTION_SSH" == true && "$OPTION_SAMEUSER" == true ]]; then |
|
|
|
|
|
#FIXME: can be fatser due to openssh-server already installed from cloud-init |
|
|
lxc-miaou-enable-ssh "$CONTAINER" >/dev/null |
|
|
lxc-miaou-enable-ssh "$CONTAINER" >/dev/null |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|