Add podman container roles

This commit is contained in:
2019-12-28 20:07:15 -05:00
parent 0e5119bc6a
commit 8c8d1f9771
20 changed files with 581 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
- name: reload systemctl
systemd:
daemon_reload: yes
- name: start service
systemd:
name: "{{ service_name }}"
state: started
- name: restart service
systemd:
name: "{{ service_name }}"
state: restarted