Missing spaces
This commit is contained in:
parent
54efcb90fd
commit
a83e902acd
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue