Unverified Commit 5ffad1f4 by Feanil Patel Committed by GitHub

Merge pull request #4259 from edx/feanil/update_python_role

Deal with the update failing because apt is already running.
parents 386a7215 61ac9687
...@@ -4,6 +4,10 @@ ...@@ -4,6 +4,10 @@
- name: Update apt-get - name: Update apt-get
raw: apt-get update -qq raw: apt-get update -qq
register: python_update_result
until: python_update_result.rc == 0
retries: 10
delay: 10
- name: Install packages - name: Install packages
raw: "apt-get install -qq {{ item }}" raw: "apt-get install -qq {{ item }}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment