Missing spaces

This commit is contained in:
Michael Simacek 2016-09-08 16:28:21 +02:00
parent 54efcb90fd
commit a83e902acd

View file

@ -38,9 +38,9 @@
when: env != 'staging' when: env != 'staging'
tasks: tasks:
- name: clean dnf metadata - name: clean dnf metadata
command: dnf {% for repo in fedora_repos %}--enablerepo {{ repo }}{% endfor %} clean all command: dnf {% for repo in fedora_repos %}--enablerepo {{ repo }} {% endfor %} clean all
- name: create dnf metadata cache - name: create dnf metadata cache
command: dnf {% for repo in fedora_repos %}--enablerepo {{ repo }}{% endfor %} makecache command: dnf {% for repo in fedora_repos %}--enablerepo {{ repo }} {% endfor %} makecache
- name: stop services - name: stop services
service: name="{{ item }}" state=stopped service: name="{{ item }}" state=stopped
with_items: with_items:
@ -76,9 +76,9 @@
when: env != 'staging' when: env != 'staging'
tasks: tasks:
- name: clean yum metadata - name: clean yum metadata
command: yum {% for repo in epel_repos %}--enablerepo {{ repo }}{% endfor %} clean all command: yum {% for repo in epel_repos %}--enablerepo {{ repo }} {% endfor %} clean all
- name: create yum metadata cache - name: create yum metadata cache
command: yum {% for repo in epel_repos %}--enablerepo {{ repo }}{% endfor %} makecache command: yum {% for repo in epel_repos %}--enablerepo {{ repo }} {% endfor %} makecache
- name: stop httpd - name: stop httpd
service: name="httpd" state=stopped service: name="httpd" state=stopped
- name: upgrade koschei - name: upgrade koschei