Start podman restart service in user role

This commit is contained in:
Thomas Kleinendorst 2024-04-23 17:12:06 +02:00
parent 16c78c0d00
commit b1ff2515e1
4 changed files with 13 additions and 16 deletions

View file

@ -5,6 +5,7 @@
vars:
user_username: "{{ pi_hole_username }}"
user_password: "{{ pi_hole_password }}"
user_use_podman_restart: true
- name: Create the /etc-pihole directory in the home directory (will be mounted to the container)
become: true
become_user: "{{ pi_hole_username }}"
@ -34,14 +35,6 @@
# changes the user of the folder to a UID only known within the container. This command basically doesn't need to
# change anything at this point so we'll ignore the error for now.
- "'set_mode_if_different' not in command_result.module_stdout"
- name: Start the podman-restart.service
become: true
become_user: "{{ pi_hole_username }}"
ansible.builtin.systemd:
name: podman-restart.service
state: started
enabled: true
scope: user
- name: Gather facts on the pi-hole container
become: true
become_user: "{{ pi_hole_username }}"