]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
lxc-opensuse: Disable on 13.2
authorJohannes Kastl <mail@ojkastl.de>
Wed, 26 Nov 2014 19:26:08 +0000 (20:26 +0100)
committerStéphane Graber <stgraber@ubuntu.com>
Thu, 27 Nov 2014 22:53:21 +0000 (17:53 -0500)
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 <git@ojkastl.de>
Acked-by: Stéphane Graber <stgraber@ubuntu.com>
templates/lxc-opensuse.in

index 3999df62dab89c3fe909593a8063f7564db31766..972ffa88d23be5dfba86197bf59b474d06a827dc 100644 (file)
@@ -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