We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 00810c6 + 9e262a2 commit c05173aCopy full SHA for c05173a
jjb/install-rhel7.yaml
@@ -31,9 +31,15 @@
31
builders:
32
- shell: |
33
#!/bin/bash -ex
34
+ virtualenv ansible.venv && source ansible.venv/bin/activate
35
+ pip install --upgrade setuptools pip
36
+ pip install 'ansible==2.4.1.0'
37
+
38
export PYTHONUNBUFFERED=1 # Enable real-time output for Ansible
39
ansible-playbook -i localhost, -c local \
40
"${WORKSPACE}/cinch/cinch/playbooks/install-rhel7.yml" \
41
-e delete_venv="${DELETE_VENV}" \
42
-e latest_tip="${LATEST_TIP}" \
43
-e beaker_kerberos="${BEAKER_KERBEROS}"
44
45
+ deactivate
0 commit comments