General Improvements & Fixes #5

Merged
me merged 54 commits from dev into main 2025-09-19 13:31:54 -07:00
Showing only changes of commit 295f29dece - Show all commits

View File

@@ -9,6 +9,7 @@
pattern: "{{ crond_pattern }}"
state: started
enabled: yes
when: ansible_virtualization_type != 'docker'
register: cron_status
until: cron_status.state == "started"
retries: 3
@@ -80,6 +81,7 @@
pattern: "{{ sshd_pattern }}"
state: reloaded
enabled: yes
when: ansible_virtualization_type != 'docker'
register: sshd_status
until: sshd_status.state == "started"
retries: 3
@@ -113,6 +115,7 @@
pattern: "{{ ntp_server }}"
state: started
enabled: yes
when: ansible_virtualization_type != 'docker'
register: ntp_status
until: ntp_status.state == "started"
retries: 3