From 99f8fb4c554c700f03d2f979520f015e5a8e1063 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Mon, 25 Jan 2016 07:57:21 +0100 Subject: [PATCH] virt-host-validate: Fix error level for user namespace check From the code it seems to me that we need user namespace if configured in domain XML. Otherwise we don't use it at all. However our tool is more strict about that. Fix this discrepancy. Signed-off-by: Michal Privoznik --- tools/virt-host-validate-lxc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virt-host-validate-lxc.c b/tools/virt-host-validate-lxc.c index e604f837dd..89a6388fbf 100644 --- a/tools/virt-host-validate-lxc.c +++ b/tools/virt-host-validate-lxc.c @@ -59,7 +59,7 @@ int virHostValidateLXC(void) ret = -1; if (virHostValidateNamespace("LXC", "user", - VIR_HOST_VALIDATE_FAIL, + VIR_HOST_VALIDATE_WARN, _("User namespace support is recommended")) < 0) ret = -1; -- GitLab