From 2c7da66570999dcd21f11f976dc6ec27d820f45c Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 4 Oct 2024 19:28:06 -0700 Subject: Use @ when accessing variables in templates Access without the @ symbol is the older method and is discouraged. --- modules/mirrorbrain/templates/mirrorbrain.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/mirrorbrain') diff --git a/modules/mirrorbrain/templates/mirrorbrain.conf b/modules/mirrorbrain/templates/mirrorbrain.conf index 9f7002d1..94bef340 100644 --- a/modules/mirrorbrain/templates/mirrorbrain.conf +++ b/modules/mirrorbrain/templates/mirrorbrain.conf @@ -3,9 +3,9 @@ instances = main [main] dbuser = mirrorbrain -dbpass = <%= mb_pgsql_pw %> +dbpass = <%= @mb_pgsql_pw %> dbdriver = postgresql -dbhost = pgsql.<%= domain %> +dbhost = pgsql.<%= @domain %> # optional: dbport = ... dbname = mirrorbrain -- cgit v1.2.1