From ca82a0d4a01e9f5f4fd4dea90723e4ebf31f0288 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 1 Dec 2010 20:10:42 +0100 Subject: [PATCH] disable library loading Signed-off-by: Nico Schottelius --- bin/cdist-config | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/bin/cdist-config b/bin/cdist-config index 7f4124b7..4963ae7a 100755 --- a/bin/cdist-config +++ b/bin/cdist-config @@ -57,12 +57,13 @@ __cdist_usage() #set -e -# load libraries so every program has them available -find "${CDIST_LIBDIR}" -type f > "${CDIST_TMP}" -while read __cdist_lib; do - __cdist_debug_echo "Loading $__cdist_lib ..." - . "${__cdist_lib}" -done < "${CDIST_TMP}" +# load libraries so every program has them available - FIXME +## find "${CDIST_LIBDIR}" -type f > "${CDIST_TMP}" +## while read __cdist_lib; do +## __cdist_debug_echo "Loading $__cdist_lib ..." +## . "${__cdist_lib}" +## done < "${CDIST_TMP}" +## # load modules, all parts => really #find "${CDIST_MODULES}" -name manifest > "${CDIST_TMP}"