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'
|
||||
tasks:
|
||||
- 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
|
||||
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
|
||||
service: name="{{ item }}" state=stopped
|
||||
with_items:
|
||||
|
@ -76,9 +76,9 @@
|
|||
when: env != 'staging'
|
||||
tasks:
|
||||
- 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
|
||||
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
|
||||
service: name="httpd" state=stopped
|
||||
- name: upgrade koschei
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue