From ac4bd32a70db90f55100bb74f939dad99547cde3 Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Tue, 26 Mar 2019 13:49:56 -0600 Subject: [PATCH] Fix reload notification file We want to trigger the reload on the localtime file (/etc/localtime) not the actual zone file because that is the symlink that gets updated when the timezone is changed. NOTE: This is <= Rocky only because we switched to ansible managment in Stein. Change-Id: I2bdafeb59c3feb86a30a46eeb803bc9795c9c820 Closes-Bug: #1819548 --- puppet/services/time/timezone.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/services/time/timezone.yaml b/puppet/services/time/timezone.yaml index afb0d364b6..d278b69000 100644 --- a/puppet/services/time/timezone.yaml +++ b/puppet/services/time/timezone.yaml @@ -56,4 +56,4 @@ outputs: refreshonly => true, tag => 'timezone-reload-services', } - File<| title == $::timezone::timezone_file |> ~> Exec<| tag == 'timezone-reload-services' |> + File<| title == $::timezone::localtime_file |> ~> Exec<| tag == 'timezone-reload-services' |>