From: Johannes Kastl Date: Wed, 26 Nov 2014 19:26:08 +0000 (+0100) Subject: lxc-opensuse: Disable on 13.2 X-Git-Tag: lxc-1.0.7~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96a4730bd7433793458b51be6275ba0916d5f0f6;p=thirdparty%2Flxc.git 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. Signed-off-by: Johannes Kastl Acked-by: Stéphane Graber --- 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