disable library loading

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2010-12-01 20:10:42 +01:00
parent e6819f6331
commit ca82a0d4a0
1 changed files with 7 additions and 6 deletions

View File

@ -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}"