Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions data/Debian-13.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
ntp::package_name:
- ntpsec
ntp::config: '/etc/ntpsec/ntp.conf'
3 changes: 2 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"operatingsystemrelease": [
"10",
"11",
"12"
"12",
"13"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/ntp_user_and_daemon_opts_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
else
servicename = if os[:family] == 'sles' && os[:release].start_with?('12', '15')
'ntpd'
elsif os[:family] == 'debian' && os[:release].start_with?('12')
elsif os[:family] == 'debian' && os[:release].start_with?('12', '13')
'ntpsec'
else
'ntp'
Expand All @@ -27,7 +27,7 @@
'/etc/sysconfig/ntpd'
elsif os[:family] == 'sles'
'/etc/sysconfig/ntp'
elsif os[:family] == 'debian' && os[:release].start_with?('12')
elsif os[:family] == 'debian' && os[:release].start_with?('12', '13')
'/etc/default/ntpsec'
elsif os[:family] == 'ubuntu' && os[:release].start_with?('24')
'/etc/default/ntpsec'
Expand Down