Commit 61ac9687 by Feanil Patel

Deal with the update failing because apt is already running.

parent 1f7a1aff
......@@ -4,6 +4,10 @@
- name: Update apt-get
raw: apt-get update -qq
register: python_update_result
until: python_update_result.rc == 0
retries: 10
delay: 10
- name: Install packages
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