disable library loading

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/1.0
Nico Schottelius 15 years ago
parent e6819f6331
commit ca82a0d4a0
  1. 13
      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}"

Loading…
Cancel
Save