blob: c1bc2902968f803d11bd459df531dd49e069bd90 (
plain)
1
2
3
4
5
6
7
8
9
|
#This is a workaround so we can check for the network to come up before starting the quadlets
#https://github.com/containers/podman/issues/22197
#https://github.com/systemd/systemd/issues/3312
- name: Copy check-network-online.service into systemd user service directory
ansible.builtin.copy:
src: "check-network-online.service"
dest: "/etc/systemd/user/check-network-online.service"
notify: Reload systemd daemon
|