Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Commit

Permalink
Merge pull request #126 from aerogear/revert-dep-fix
Browse files Browse the repository at this point in the history
Revert dependency fix
  • Loading branch information
jasonmadigan authored Jul 6, 2018
2 parents dd40ef4 + 81e2cbc commit 8e7bd2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions installer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,17 @@ function check_ansible() {

command -v ansible &>/dev/null
ansible_exists=${?}; if [[ ${ansible_exists} -ne 0 ]]; then
does_not_exist_msg "Ansible" "pip install ansible>=2.3"
does_not_exist_msg "Ansible" "pip install ansible>=2.6"
exit 1
fi
check_passed_msg "Ansible"

readonly ansible_version=$(ansible --version | sed -n '1p' | cut -d " " -f2)

check_version_msg "Ansible" ">= 2.3"
compare_version ${ansible_version} 2.3
check_version_msg "Ansible" ">= 2.6"
compare_version ${ansible_version} 2.6
ansible_version_comparison=${?}; if [[ ${ansible_version_comparison} -eq ${VER_LT} ]]; then
echo -e "${RED}Ansible version is < 2.3. Install ansible>=2.3 using pip install ansible>=2.3${RESET}"
echo -e "${RED}Ansible version is < 2.6. Install ansible>=2.6 using pip install ansible>=2.6${RESET}"
exit 1
fi
check_passed_msg "Ansible"
Expand Down
4 changes: 2 additions & 2 deletions installer/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- src: aerogear.ansible_openshift_origin_client_tools
- src: andrewrothstein.openshift-origin-client-tools
version: v1.0.7
name: openshift-origin-client-tools
version: v1.0.3
- src: aerogear.install_socat
name: install-socat
version: v1.0.0

0 comments on commit 8e7bd2a

Please sign in to comment.