From 9fc68fe3283cc42149c64b5a5d1fafe5b698f12a Mon Sep 17 00:00:00 2001 From: Serge Hallyn Date: Thu, 7 Jan 2016 14:51:56 -0800 Subject: [PATCH] don't use sh -u That causes failure when we check (with test -n) for an env variable which does not exist. Signed-off-by: Serge Hallyn --- share/lxc.mount.hook.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/lxc.mount.hook.in b/share/lxc.mount.hook.in index 1ce1859..c035c87 100755 --- a/share/lxc.mount.hook.in +++ b/share/lxc.mount.hook.in @@ -1,4 +1,4 @@ -#!/bin/sh -eu +#!/bin/sh -e # Don't mess with containers that don't have /sys/fs/cgroup configured # (lxc.mount.auto = cgroup:mixed) -- 2.39.2