From ae1976228660588902a904f7509a106b790531cb Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 4 Oct 2024 21:24:01 -0700 Subject: Try to fix the i18n template Puppet didn't like the last change where a method was being called on a variable. --- deployment/common/templates/i18n | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'deployment/common') diff --git a/deployment/common/templates/i18n b/deployment/common/templates/i18n index 630be077..a96665e7 100644 --- a/deployment/common/templates/i18n +++ b/deployment/common/templates/i18n @@ -5,7 +5,7 @@ locale = 'en_US.UTF-8' -%> LC_TELEPHONE=<%= @locale %> LC_CTYPE=<%= @locale %> -LANGUAGE=<%= @locale %>:<%= @locale.split('.')[0] %>:<%= @locale.split('.')[0].split('_')[0] %> +LANGUAGE=<%= @locale %>:<%= (@locale).split('.')[0] %>:<%= (@locale).split('.')[0].split('_')[0] %> LC_MONETARY=<%= @locale %> LC_ADDRESS=<%= @locale %> LC_COLLATE=<%= @locale %> -- cgit v1.2.1