From: Jakub Jirutka Date: Tue, 14 Mar 2017 16:28:47 +0000 (+0100) Subject: lxc-alpine: add community repository to default repositories X-Git-Tag: lxc-2.1.0~182^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=288142218ae6cc24bf084fdd5768ad2c83086fb1;p=thirdparty%2Flxc.git lxc-alpine: add community repository to default repositories Signed-off-by: Jakub Jirutka --- diff --git a/templates/lxc-alpine.in b/templates/lxc-alpine.in index 06616b374..fd281f84e 100644 --- a/templates/lxc-alpine.in +++ b/templates/lxc-alpine.in @@ -236,7 +236,6 @@ install() { local branch="$3" local extra_packages="$4" local apk_cache="$LXC_CACHE_DIR/apk/$arch" - local repo_url="$MIRROR_URL/$branch/main" if [ "$FLUSH_CACHE" = 'yes' ] && [ -d "$apk_cache" ]; then einfo "Cleaning cached APK packages for $arch" @@ -249,7 +248,10 @@ install() { mkdir -p etc/apk ln -s "$apk_cache" etc/apk/cache - echo "$repo_url" > etc/apk/repositories + + local repo; for repo in main community; do + echo "$MIRROR_URL/$branch/$repo" >> etc/apk/repositories + done install_packages "$arch" "alpine-base $extra_packages" make_dev_nodes