The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc/pull/1402
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === The template scripts assumes that DISTRO should contain leap/4* when dealing with Opensuse Leap releases, but the default value did not contain the leap/ prefix
From 51a0abf8c40ca4708ca58b96ca211947723247c1 Mon Sep 17 00:00:00 2001 From: Maxime Besson <[email protected]> Date: Mon, 30 Jan 2017 13:08:40 +0100 Subject: [PATCH] lxc-opensuse: fix default value for release code --- templates/lxc-opensuse.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/lxc-opensuse.in b/templates/lxc-opensuse.in index 46a841a..5e8686b 100644 --- a/templates/lxc-opensuse.in +++ b/templates/lxc-opensuse.in @@ -458,7 +458,7 @@ fi if [ -z "$DISTRO" ]; then echo "" echo "No release selected, using openSUSE Leap 42.2" - DISTRO=42.2 + DISTRO="leap/42.2" else echo "" case "$DISTRO" in
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
