From 96a4730bd7433793458b51be6275ba0916d5f0f6 Mon Sep 17 00:00:00 2001 From: Johannes Kastl Date: Wed, 26 Nov 2014 20:26:08 +0100 Subject: [PATCH] lxc-opensuse: Disable on 13.2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Disabled building openSUSE containers on openSUSE 13.2 and openSUSE Tumbleweed due to faulty behaviour with newer versions of init_buildsystem. 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 3999df62d..972ffa88d 100644 --- a/templates/lxc-opensuse.in +++ b/templates/lxc-opensuse.in @@ -394,6 +394,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 [ "$(id -u)" != "0" ]; then echo "This script should be run as 'root'" exit 1 -- 2.47.2