robot: adapt VIM test for RBAC environments
[osm/devops.git] / jenkins / common / all_funcs
index 10b7650..a847108 100644 (file)
@@ -22,9 +22,7 @@ if [ -z "$OSM_JENKINS" ]; then
        export OSM_JENKINS=$(realpath $(dirname ${BASH_SOURCE[0]} ))
 fi
 
-. ${OSM_JENKINS}/common/logging
-INFO "logging sourced"
-. ${OSM_JENKINS}/common/config
-INFO "config sourced"
-. ${OSM_JENKINS}/common/container
-INFO "container sourced"
+for file in logging config container git_functions; do
+       . ${OSM_JENKINS}/common/$file
+       INFO "$file sourced"
+done