
Changes is needed because we can not make dependencies on PRs from other repositories such as zuul-airship-roles, this would allow more robust development in the stage we currently are in. When there will be less activity on gating roles will be moved back to separate repo. Change-Id: I85c9bdd47b5aaba90df5458b20c90ff5c912c05f
11 lines
263 B
YAML
11 lines
263 B
YAML
- name: reload systemd configuration
|
|
become: yes
|
|
systemd:
|
|
daemon_reload: yes
|
|
|
|
- name: http file server restarted
|
|
service:
|
|
name: simple-http-{{ http_fileserver_name | default('default') }}.service
|
|
state: restarted
|
|
enabled: true
|
|
become: true |