From 100afa5f5bab56efded567a037cb3fe7dfe05ae1 Mon Sep 17 00:00:00 2001 From: Alex Zepeda Date: Thu, 22 Sep 2016 02:39:55 -0700 Subject: [PATCH] Skip NTP checks from within a FreeBSD jail (#281) --- include/tests_time | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/tests_time b/include/tests_time index 097fc400..de82561a 100644 --- a/include/tests_time +++ b/include/tests_time @@ -45,6 +45,9 @@ # Skip NTP tests if we are in a DomU xen instance YYY FIND=$(cat /sys/hypervisor/type) if [ "${FIND}" = "xen" ]; then PREQS_MET="NO"; else PREQS_MET="YES"; fi + elif [ -f /sbin/sysctl ] && [ "`/sbin/sysctl -n security.jail.jailed 2>/dev/null || echo 0`" -eq 1 ]; then + # Skip NTP tests if we're in a FreeBSD jail + PREQS_MET="NO" else PREQS_MET="YES" fi