summaryrefslogtreecommitdiffstats
path: root/deployment/scripts/install_yedit_for_ansible.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/scripts/install_yedit_for_ansible.sh')
-rwxr-xr-xdeployment/scripts/install_yedit_for_ansible.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/deployment/scripts/install_yedit_for_ansible.sh b/deployment/scripts/install_yedit_for_ansible.sh
deleted file mode 100755
index ac4b0c44..00000000
--- a/deployment/scripts/install_yedit_for_ansible.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#! /bin/bash
-#
-# List of expected input args:
-# - $1 is an env dir, i.e '/home/username/.../.tox/ocp3.6'
-# - $2 is a tag or branch name to checkout from.
-
-YEDIT_GIT_URL='git://github.com/vponomaryov/yedit.git'
-TARGET_DIR=$1/src/yedit
-
-if [[ ! -d $TARGET_DIR ]]; then
- mkdir -p $TARGET_DIR
- git clone $YEDIT_GIT_URL --single-branch --branch $2 $TARGET_DIR
-else
- cd $TARGET_DIR
- git fetch -t --all
- git reset --hard $2
-fi