From 9c6d7dbd892c30c11ed8c03f74a24d688d47cad4 Mon Sep 17 00:00:00 2001 From: Daniel Heule Date: Thu, 24 Mar 2016 11:29:13 +0100 Subject: [PATCH] modified the unknown case ... --- cdist/conf/explorer/init | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cdist/conf/explorer/init b/cdist/conf/explorer/init index a9cdd0d3..fd54d0c0 100755 --- a/cdist/conf/explorer/init +++ b/cdist/conf/explorer/init @@ -27,10 +27,8 @@ uname_s="$(uname -s)" case "$uname_s" in Linux|FreeBSD) ps -o comm= -p 1 || true - exit 0 ;; *) - echo "init exlorer needs to be implemented for $os" >&2 - exit 1 + echo "unknown" ;; esac