Signed-off-by: Anthony PERARD <anthony.per...@citrix.com> --- ts-host-install | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/ts-host-install b/ts-host-install index f79a1beb..61433e64 100755 --- a/ts-host-install +++ b/ts-host-install @@ -151,7 +151,13 @@ END my $ntpserver = get_target_property($ho, 'NtpServer'); if ($ntpserver) { - target_editfile_root($ho, '/etc/ntp.conf', sub { + my $ntpconf_path; + if ($ho->{Suite} =~ m/lenny|squeeze|wheezy|jessie|stretch|buster/) { + $ntpconf_path = '/etc/ntp.conf'; + } else { + $ntpconf_path = '/etc/ntpsec/ntp.conf'; + } + target_editfile_root($ho, $ntpconf_path, sub { my $done= 0; while (<EI>) { if (m/^server\b|^pool\b\s/) { -- Anthony PERARD