Skip to content

Commit

Permalink
attempt to resolve ubuntu issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsysmin committed Mar 11, 2024
1 parent 6441dfe commit 48ce6e3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/chrony.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
matrix:
molecule_distro:
- { distro: centos-8, command: /usr/sbin/init }
# - {distro: ubuntu-18.04, command: /lib/systemd/systemd}
# - {distro: ubuntu-20.04, command: /lib/systemd/systemd}
# - {distro: debian-10, command: /lib/systemd/systemd}
- {distro: ubuntu-18.04, command: /lib/systemd/systemd}
- {distro: ubuntu-20.04, command: /lib/systemd/systemd}
- {distro: debian-10, command: /lib/systemd/systemd}
collection_role:
- chrony
steps:
Expand Down
2 changes: 1 addition & 1 deletion roles/chrony/templates/chrony.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# List of NTP servers to use.
{% for server in chrony_config_server %}
server {{ server }} iburst
{{ chrony_server_param }} {{ server }} iburst
{% endfor %}

# This directive specify the location of the file containing ID/key pairs for
Expand Down
1 change: 1 addition & 0 deletions roles/chrony/vars/archlinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ chrony_service_name: chronyd
chrony_config_location: /etc/chrony.conf
chrony_config_driftfile: /var/lib/chrony/drift
chrony_config_keyfile: /etc/chrony.keys
chrony_server_param: server
1 change: 1 addition & 0 deletions roles/chrony/vars/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ chrony_service_name: chrony
chrony_config_location: /etc/chrony/chrony.conf
chrony_config_driftfile: /var/lib/chrony/chrony.drift
chrony_config_keyfile: /etc/chrony/chrony.keys
chrony_server_param: pool
1 change: 1 addition & 0 deletions roles/chrony/vars/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ chrony_service_name: chronyd
chrony_config_location: /etc/chrony.conf
chrony_config_driftfile: /var/lib/chrony/drift
chrony_config_keyfile: /etc/chrony.keys
chrony_server_param: server
1 change: 1 addition & 0 deletions roles/chrony/vars/suse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ chrony_service_name: chronyd
chrony_config_location: /etc/chrony.conf
chrony_config_driftfile: /var/lib/chrony/drift
chrony_config_keyfile: /etc/chrony.keys
chrony_server_param: server

0 comments on commit 48ce6e3

Please sign in to comment.