Skip to content
Snippets Groups Projects
Commit daaa7731 authored by Lars Beckers's avatar Lars Beckers
Browse files

management: fix syntax errors

parent f0f2d9a7
Branches main
Tags v1.0.9
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
- name: ensure required software for ansible is installed - name: ensure required software for ansible is installed
apt: apt:
name: {{ item }} name: "{{ item }}"
state: installed state: installed
with_items: with_items:
- python-yaml - python-yaml
...@@ -17,11 +17,11 @@ ...@@ -17,11 +17,11 @@
- ansible - ansible
- name: ensure ansible is up to date - name: ensure ansible is up to date
git: ansible to opt git:
dest: /opt/ansible dest: /opt/ansible
recursive: yes recursive: yes
repo: https://github.com/ansible/ansible.git repo: https://github.com/ansible/ansible.git
version: {{ mgmt_ansible_version }} version: "{{ mgmt_ansible_version }}"
notify: notify:
- rebuild ansible and its documentation - rebuild ansible and its documentation
- rebuild ansible egg info - rebuild ansible egg info
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment