#!/usr/bin/env bash current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" source $current_dir/utils.sh # Get utils functions. for debian_version in "buster" "bullseye" do rebuild_base_containers $debian_version "stable" "amd64" for ynh_version in "testing" "unstable" do for snapshot in "before-install" "after-install" do lxc launch "yunohost-$debian_version-stable-$snapshot" "yunohost-$debian_version-$ynh_version-$snapshot-tmp" if [[ "$ynh_version" == "testing" ]] then repo_version="testing" elif [[ "$DISTRIB" == "unstable" ]] then repo_version="testing unstable" fi lxc exec "yunohost-$debian_version-$ynh_version-$snapshot-tmp" -- /bin/bash -c "for FILE in \`ls /etc/apt/sources.list /etc/apt/sources.list.d/*\`; do sed -i 's@^deb http://forge.yunohost.org.*@& $repo_version@' \$FILE done" rotate_image "yunohost-$debian_version-$ynh_version-$snapshot-tmp" "yunohost-$debian_version-$ynh_version-$snapshot" lxc delete -f "yunohost-$debian_version-$ynh_version-$snapshot-tmp" update_image $debian_version $ynh_version $snapshot done done done