Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#60 - define the Ansible tasks to install the Podman TCP application … #348

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions ansible/roles/chris_podman_tcp/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
# Automate the deployment of ChRIS podman socket service and TCP service as a Podman container running as a Systemd service.

- name: Create the {{ PODMAN_TCP_NAME }} systemd service {{ PODMAN_TCP_SYSTEMD }}.
template:
src: chris_podman_tcp.service
dest: "{{ PODMAN_TCP_SYSTEMD }}"
become: true
when: ansible_pkg_mgr != 'homebrew'

- name: Reload the services.
systemd:
daemon_reload: true
become: true
when: ansible_pkg_mgr != 'homebrew'

- name: Start and enable the podman.socket service.
service:
name: "podman.socket"
enabled: true
state: started
become: true

- name: Start and enable the {{ PODMAN_TCP_SERVICE }} service.
service:
name: "{{ PODMAN_TCP_SERVICE }}"
enabled: false
state: restarted
become: true
when: ansible_pkg_mgr != 'homebrew'