Commit 96a4730b by Johannes Kastl Committed by Stéphane Graber

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: 's avatarJohannes Kastl <git@ojkastl.de> Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
parent f1503ae8
...@@ -394,6 +394,11 @@ if [ -z "$path" ]; then ...@@ -394,6 +394,11 @@ if [ -z "$path" ]; then
exit 1 exit 1
fi 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 if [ "$(id -u)" != "0" ]; then
echo "This script should be run as 'root'" echo "This script should be run as 'root'"
exit 1 exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment