From f38788b405e6738bf3fbe6731e28c18967da71b2 Mon Sep 17 00:00:00 2001 From: Johannes Kastl Date: Wed, 26 Nov 2014 20:20:05 +0100 Subject: [PATCH] lxc-opensuse: Disable on 13.2 Disabled building openSUSE containers on openSUSE 13.2 and openSUSE Tumbleweed due to faulty behaviour with newer versions of init_buildsystem. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Kastl Acked-by: Stéphane Graber --- templates/lxc-opensuse.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/lxc-opensuse.in b/templates/lxc-opensuse.in index 60b4ddcbc..6ef0f9bd7 100644 --- a/templates/lxc-opensuse.in +++ b/templates/lxc-opensuse.in @@ -426,6 +426,11 @@ if [ -z "$path" ]; then exit 1 fi +if [ $(grep Harlequin /etc/os-release >/dev/null; echo $?) = 0 ]; then + echo "Building containers on openSUSE 13.2 or Tumbleweed is broken at the moment. We are working on this problem." + exit 1 +fi + if [ -z "$DISTRO" ]; then echo "" echo "No release selected, using openSUSE 12.3"