From a51a90a1494a2d8bc6189c888cff47331532b9c8 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 18 May 2020 16:52:26 +0200 Subject: [PATCH] no more pre-installed image --- auto_upgrade_container.sh | 9 ++--- base.sh | 19 +++------ rebuild_all.sh | 2 + run.sh | 81 +------------------------------------ utils.sh | 84 ++++++++++++++++++++++----------------- 5 files changed, 60 insertions(+), 135 deletions(-) diff --git a/auto_upgrade_container.sh b/auto_upgrade_container.sh index cf966a3..2e6572a 100755 --- a/auto_upgrade_container.sh +++ b/auto_upgrade_container.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" source $current_dir/utils.sh # Get utils functions. @@ -5,11 +7,8 @@ for debian_version in "stretch" "buster" do for ynh_version in "stable" "testing" "unstable" do - for snapshot in "before-install" "before-postinstall" "after-postinstall" - do - image="yunohost-$debian_version-$ynh_version-$snapshot" + image="yunohost-$debian_version-$ynh_version" - update_image $image - done + update_image $image done done \ No newline at end of file diff --git a/base.sh b/base.sh index 98ff9b0..d1b0433 100755 --- a/base.sh +++ b/base.sh @@ -1,18 +1,7 @@ #!/usr/bin/env bash # All Variables here: https://docs.gitlab.com/ee/ci/variables/predefined_variables.html#variables-reference, strating with CUSTOM_ENV_ -#CUSTOM_ENV_CI_DEFAULT_BRANCH=stretch-unstable -#CUSTOM_ENV_CI_JOB_NAME=build1 -#CUSTOM_ENV_CI_BUILD_STAGE=pre-postinstall -#CUSTOM_ENV_CI_JOB_STAGE=pre-postinstall -#CUSTOM_ENV_CI_BUILD_NAME=build1 -#CUSTOM_ENV_CI_PROJECT_TITLE=yunohost -#CUSTOM_ENV_CI_RUNNER_EXECUTABLE_ARCH=linux/amd64 -#CUSTOM_ENV_CI_PROJECT_NAMESPACE=yunohost -#CUSTOM_ENV_CI_COMMIT_REF_NAME=stretch-unstable -#CUSTOM_ENV_CI_COMMIT_REF_SLUG=stretch-unstable -#CUSTOM_ENV_CI_PROJECT_NAME=yunohost -#CUSTOM_ENV_CI_PROJECT_DIR=/builds/yunohost/yunohost + CONTAINER_ID="runner-$CUSTOM_ENV_CI_RUNNER_ID-project-$CUSTOM_ENV_CI_PROJECT_ID-concurrent-$CUSTOM_ENV_CI_CONCURRENT_PROJECT_ID-$CUSTOM_ENV_CI_JOB_ID" ARCH="$(echo $CUSTOM_ENV_CI_RUNNER_EXECUTABLE_ARCH | cut -d'/' -f2)" # linux/amd64 DEFAULT_BRANCH="$CUSTOM_ENV_CI_DEFAULT_BRANCH" @@ -33,4 +22,8 @@ PROJECT_DIR="$CUSTOM_ENV_CI_PROJECT_DIR" PROJECT_NAME="$CUSTOM_ENV_CI_PROJECT_NAME" # For example yunohost-stretch-unstable -BASE_IMAGE="yunohost-$DEBIAN_VERSION-$CURRENT_VERSION" \ No newline at end of file +BASE_IMAGE="yunohost-$DEBIAN_VERSION-$CURRENT_VERSION" + + +YNH_DEPENDENCIES="debhelper python-psutil python-requests python-dnspython python-openssl python-miniupnpc python-dbus python-jinja2 python-toml python-packaging apt apt-transport-https nginx nginx-extras php-fpm php-ldap php-intl mariadb-server php-mysql php-mysqlnd openssh-server iptables fail2ban dnsutils bind9utils openssl ca-certificates netcat-openbsd iproute2 slapd ldap-utils sudo-ldap libnss-ldapd unscd libpam-ldapd dnsmasq avahi-daemon libnss-mdns resolvconf libnss-myhostname postfix postfix-ldap postfix-policyd-spf-perl postfix-pcre dovecot-core dovecot-ldap dovecot-lmtpd dovecot-managesieved dovecot-antispam rspamd opendkim-tools postsrsd procmail mailutils redis-server git curl wget cron unzip lsb-release haveged fake-hwclock equivs lsof whois python-publicsuffix" +BUILD_DEPENDENCIES="git-buildpackage postfix python-setuptools python-pip" \ No newline at end of file diff --git a/rebuild_all.sh b/rebuild_all.sh index 47372a1..6ddb676 100755 --- a/rebuild_all.sh +++ b/rebuild_all.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" source $current_dir/utils.sh # Get utils functions. diff --git a/run.sh b/run.sh index 1ccc3bd..3405629 100755 --- a/run.sh +++ b/run.sh @@ -3,52 +3,6 @@ current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" source $current_dir/base.sh # Get variables from base. -create_sym_link() { - local DEST=$1 - local LINK=$2 - # Remove current sources if not a symlink - lxc exec "$CONTAINER_ID" -- sh -c "[ -L "$LINK" ] || rm -rf $LINK" - # Symlink from Git repository - lxc exec "$CONTAINER_ID" -- sh -c "ln -sfn $DEST $LINK" -} - -link_moulinette_from_git() { - echo "Moulinette: using the $CURRENT_BRANCH branch if it exists, $DEFAULT_BRANCH otherwise" - - moulinette_dir="/tmp/ci_moulinette" - lxc exec "$CONTAINER_ID" -- sh -c "mkdir $moulinette_dir" - lxc exec "$CONTAINER_ID" -- sh -c "git clone https://github.com/YunoHost/moulinette $moulinette_dir" - lxc exec "$CONTAINER_ID" -- sh -c "(cd $moulinette_dir; \ - if git ls-remote --heads | grep -q $CURRENT_BRANCH; \ - then \ - git checkout $CURRENT_BRANCH; \ - else \ - git checkout $DEFAULT_BRANCH; \ - fi)" - - create_sym_link "$moulinette_dir/locales" "/usr/share/moulinette/locale" - create_sym_link "$moulinette_dir/moulinette" "/usr/lib/python2.7/dist-packages/moulinette" -} - -link_ssowat_from_git() { - echo "SSOWAT: using the $CURRENT_BRANCH branch if it exists, $DEFAULT_BRANCH otherwise" - - ssowat_dir="/tmp/ci_ssowat" - lxc exec "$CONTAINER_ID" -- sh -c "mkdir $ssowat_dir" - lxc exec "$CONTAINER_ID" -- sh -c "git clone https://github.com/YunoHost/ssowat $ssowat_dir" - lxc exec "$CONTAINER_ID" -- sh -c "(cd $ssowat_dir; \ - if git ls-remote --heads | grep -q $CURRENT_BRANCH; \ - then \ - git checkout $CURRENT_BRANCH; \ - else \ - git checkout $DEFAULT_BRANCH; \ - fi)" - - create_sym_link "$ssowat_dir" "/usr/share/ssowat" - - lxc exec "$CONTAINER_ID" -- sh -c "systemctl reload nginx" -} - case ${2} in prepare_script) ;; @@ -61,40 +15,7 @@ case ${2} in build_script) case $PROJECT_NAME in yunohost) - echo "Link yunohost" - - # bin - create_sym_link "$PROJECT_DIR/bin/yunohost" "/usr/bin/yunohost" - create_sym_link "$PROJECT_DIR/bin/yunohost-api" "/usr/bin/yunohost-api" - - # data - create_sym_link "$PROJECT_DIR/data/actionsmap/yunohost.yml" "/usr/share/moulinette/actionsmap/yunohost.yml" - create_sym_link "$PROJECT_DIR/data/hooks" "/usr/share/yunohost/hooks" - create_sym_link "$PROJECT_DIR/data/templates" "/usr/share/yunohost/templates" - create_sym_link "$PROJECT_DIR/data/helpers" "/usr/share/yunohost/helpers" - create_sym_link "$PROJECT_DIR/data/helpers.d" "/usr/share/yunohost/helpers.d" - create_sym_link "$PROJECT_DIR/data/other" "/usr/share/yunohost/yunohost-config/moulinette" - # debian - create_sym_link "$PROJECT_DIR/debian/conf/pam/mkhomedir" "/usr/share/pam-configs/mkhomedir" - - # lib - create_sym_link "$PROJECT_DIR/lib/metronome/modules/ldap.lib.lua" "/usr/lib/metronome/modules/ldap.lib.lua" - create_sym_link "$PROJECT_DIR/lib/metronome/modules/mod_auth_ldap2.lua" "/usr/lib/metronome/modules/mod_auth_ldap2.lua" - create_sym_link "$PROJECT_DIR/lib/metronome/modules/mod_legacyauth.lua" "/usr/lib/metronome/modules/mod_legacyauth.lua" - create_sym_link "$PROJECT_DIR/lib/metronome/modules/mod_storage_ldap.lua" "/usr/lib/metronome/modules/mod_storage_ldap.lua" - create_sym_link "$PROJECT_DIR/lib/metronome/modules/vcard.lib.lua" "/usr/lib/metronome/modules/vcard.lib.lua" - - # src - create_sym_link "$PROJECT_DIR/src/yunohost" "/usr/lib/moulinette/yunohost" - - # locales - create_sym_link "$PROJECT_DIR/locales" "/usr/lib/moulinette/yunohost/locales" - - # moulinette - link_moulinette_from_git - - # ssowat - link_ssowat_from_git + echo "Running migrations yunohost" # Run migrations lxc exec "$CONTAINER_ID" -- sh -c "yunohost tools migrations migrate" diff --git a/utils.sh b/utils.sh index 46ac7ad..ae65f56 100755 --- a/utils.sh +++ b/utils.sh @@ -5,7 +5,7 @@ source $current_dir/base.sh # Get variables from base. clean_containers() { - local base_image_to_clean=$1 + local base_image_to_clean=$1 for image_to_delete in "$base_image_to_clean"{,"-tmp"} do @@ -15,13 +15,10 @@ clean_containers() fi done - for image_to_delete in "$base_image_to_clean-"{"before-install","before-postinstall","after-postinstall"} - do - if lxc image info $image_to_delete &>/dev/null - then - lxc image delete $image_to_delete - fi - done + if lxc image info $base_image_to_clean &>/dev/null + then + lxc image delete $base_image_to_clean + fi } wait_container() @@ -95,7 +92,7 @@ rotate_image() local alias_image=$2 # Save the finger print to delete the old image later - local finger_print_to_delete=$(lxc image info "$alias_image" | grep Fingerprint | awk '{print $2}') + local finger_print_to_delete=$(lxc image info "$alias_image" | grep Fingerprint | awk '{print $2}') local should_restart=0 # If the container is running, stop it @@ -120,46 +117,59 @@ rotate_image() rebuild_base_containers() { - local debian_version=$1 - local ynh_version=$2 - local arch=$3 - local base_image_to_rebuild="yunohost-$debian_version-$ynh_version" + local debian_version=$1 + local ynh_version=$2 + local arch=$3 + local base_image_to_rebuild="yunohost-$debian_version-$ynh_version" lxc launch images:debian/$debian_version/$arch "$base_image_to_rebuild-tmp" wait_container "$base_image_to_rebuild-tmp" if [[ "$debian_version" == "buster" ]] - then - lxc config set "$base_image_to_rebuild-tmp" security.nesting true # Need this for buster because it is using apparmor - fi + then + lxc config set "$base_image_to_rebuild-tmp" security.nesting true # Need this for buster because it is using apparmor + fi lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get update" - lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install curl -y" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install --assume-yes wget curl" # Install Git LFS, git comes pre installed with ubuntu image. lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash" - lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install git-lfs -y" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install --assume-yes git-lfs" # Install gitlab-runner binary since we need for cache/artifacts. lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "curl -s https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | bash" - lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install gitlab-runner -y" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install --assume-yes gitlab-runner" - rotate_image "$base_image_to_rebuild-tmp" "$base_image_to_rebuild-before-install" - - if [[ "$debian_version" == "buster" ]] - then - INSTALL_SCRIPT="https://raw.githubusercontent.com/YunoHost/install_script/buster-unstable/install_yunohost" - else - INSTALL_SCRIPT="https://install.yunohost.org" + # Add yunohost repo + local CUSTOMDEB="deb http://forge.yunohost.org/debian/ stretch stable" + if [[ "$ynh_version" == "stable" ]] ; then + CUSTOMDEB="$CUSTOMDEB" + elif [[ "$ynh_version" == "testing" ]] ; then + CUSTOMDEB="$CUSTOMDEB testing" + elif [[ "$ynh_version" == "unstable" ]] ; then + CUSTOMDEB="$CUSTOMDEB testing unstable" fi - # Install yunohost - lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "curl $INSTALL_SCRIPT | bash -s -- -a -d $ynh_version" - rotate_image "$base_image_to_rebuild-tmp" "$base_image_to_rebuild-before-postinstall" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "echo \"$CUSTOMDEB\" > /etc/apt/sources.list.d/yunohost.list" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "wget -O- https://forge.yunohost.org/yunohost.asc -q | apt-key add -qq - >/dev/null 2>&1" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get update" - # Running post Install - lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "yunohost tools postinstall -d domain.tld -p the_password --ignore-dyndns" + # Patch install dependencies + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "touch /var/log/auth.log" + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c " +if ! id avahi > /dev/null 2>&1; then + avahi_id=$((500 + RANDOM % 500)) + while cut -d ':' -f 3 /etc/passwd | grep -q \$avahi_id + do + avahi_id=$((500 + RANDOM % 500)) + done + adduser --disabled-password --quiet --system --home /var/run/avahi-daemon --no-create-home --gecos \"Avahi mDNS daemon\" --group avahi --uid \$avahi_id +fi" - rotate_image "$base_image_to_rebuild-tmp" "$base_image_to_rebuild-after-postinstall" + # Pre install dependencies + lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install --assume-yes $YNH_DEPENDENCIES $BUILD_DEPENDENCIES" + + rotate_image "$base_image_to_rebuild-tmp" "$base_image_to_rebuild" lxc stop "$base_image_to_rebuild-tmp" @@ -169,11 +179,11 @@ rebuild_base_containers() update_image() { local image_to_update=$1 - if ! lxc image info "$image_to_update" &>/dev/null - then - echo "Unable to upgrade image $image_to_update" - return - fi + if ! lxc image info "$image_to_update" &>/dev/null + then + echo "Unable to upgrade image $image_to_update" + return + fi # Start and run upgrade lxc launch "$image_to_update" "$image_to_update-tmp"