From efbe935dd9935a35fbd9ed8309925bf80e6713be Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Tue, 29 Jul 2025 01:16:50 +0100 Subject: [PATCH] Add :timezone comment reminder in multiple timezone countries --- roles/ar.rb | 3 ++- roles/au.rb | 1 + roles/br.rb | 1 + roles/ca.rb | 1 + roles/id.rb | 1 + roles/ru.rb | 1 + roles/us.rb | 1 + 7 files changed, 8 insertions(+), 1 deletion(-) diff --git a/roles/ar.rb b/roles/ar.rb index ec8b086fc..6b26ca1cc 100644 --- a/roles/ar.rb +++ b/roles/ar.rb @@ -2,7 +2,8 @@ name "ar" description "Role applied to all servers located in Argentina" override_attributes( - :country => "ar" + :country => "ar", + :timezone => "America/Argentina/Buenos_Aires" ) run_list( diff --git a/roles/au.rb b/roles/au.rb index 857845298..0f49f6344 100644 --- a/roles/au.rb +++ b/roles/au.rb @@ -3,6 +3,7 @@ description "Role applied to all servers located in Australia" override_attributes( :country => "au" + # :timezone should be be set in parent role for multiple timezone countries ) run_list( diff --git a/roles/br.rb b/roles/br.rb index 3dd061724..1b9b75388 100644 --- a/roles/br.rb +++ b/roles/br.rb @@ -3,6 +3,7 @@ description "Role applied to all servers located in Brazil" override_attributes( :country => "br" + # :timezone should be be set in parent role for multiple timezone countries ) run_list( diff --git a/roles/ca.rb b/roles/ca.rb index 3d83f885c..efe62e9c5 100644 --- a/roles/ca.rb +++ b/roles/ca.rb @@ -3,6 +3,7 @@ description "Role applied to all servers located in Canada" override_attributes( :country => "ca" + # :timezone should be set in parent role for multiple timezone countries ) run_list( diff --git a/roles/id.rb b/roles/id.rb index 3ddd34b6e..1f955257a 100644 --- a/roles/id.rb +++ b/roles/id.rb @@ -3,6 +3,7 @@ description "Role applied to all servers located in Indonesia" override_attributes( :country => "id" + # :timezone should be be set in parent role for multiple timezone countries ) run_list( diff --git a/roles/ru.rb b/roles/ru.rb index 4a0625753..c5f54247b 100644 --- a/roles/ru.rb +++ b/roles/ru.rb @@ -3,6 +3,7 @@ description "Role applied to all servers located in Russia" override_attributes( :country => "ru" + # :timezone should be be set in parent role for multiple timezone countries ) run_list( diff --git a/roles/us.rb b/roles/us.rb index 8a5c456b7..3d3da12c4 100644 --- a/roles/us.rb +++ b/roles/us.rb @@ -3,6 +3,7 @@ description "Role applied to all servers located in the USA" override_attributes( :country => "us" + # :timezone should be be set in parent role for multiple timezone countries ) run_list( -- 2.39.5