summaryrefslogtreecommitdiffstats
path: root/anslib/link_vars.sh
diff options
context:
space:
mode:
Diffstat (limited to 'anslib/link_vars.sh')
-rwxr-xr-xanslib/link_vars.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/anslib/link_vars.sh b/anslib/link_vars.sh
new file mode 100755
index 0000000..01a9fe9
--- /dev/null
+++ b/anslib/link_vars.sh
@@ -0,0 +1,26 @@
+
+function mklink_func {
+# if [ -d openshift-cluster ]; then
+# mklink_func "openshift-cluster"
+# fi
+
+ name=$(basename "$1")
+# [[ $name == "private" ]] && exit
+ [[ $name == "vars" ]] && exit
+ [[ $name == "roles" ]] && exit
+
+ (
+ cd $1
+ path=..
+ while [ ! -f "$path/link_vars.sh" ]; do
+ path="../$path"
+ done
+ path="../$path"
+
+ ln -sf "$path/group_vars"
+ ln -sf "$path/host_vars"
+ )
+}
+
+export -f mklink_func
+find openshift-ansible/playbooks -mindepth 0 -maxdepth 2 -type d -print0 | xargs -0 -L 1 -I {} bash -c 'mklink_func "$@"' _ {}