disable library loading
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
e6819f6331
commit
ca82a0d4a0
1 changed files with 7 additions and 6 deletions
|
@ -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…
Reference in a new issue