From b4d0b097a04eabdee10b48e58ee767be3690c373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Str=C3=B6mb=C3=A4ck?= <filip.stromback@liu.se> Date: Mon, 21 Aug 2023 14:05:54 +0200 Subject: [PATCH] Fixed syntax errors. --- manifests/auth.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/auth.pp b/manifests/auth.pp index 3827c38..275489d 100644 --- a/manifests/auth.pp +++ b/manifests/auth.pp @@ -141,8 +141,8 @@ class aes::auth ( user => $auth_user, group => $auth_group, path => $auth_home, - command => "$auth_home/on_update.sh", - environment => [ "HOME=$auth_home", "PATH=/bin:/usr/bin" ], + command => "${auth_home}/on_update.sh", + environment => [ "HOME=${auth_home}", 'PATH=/bin:/usr/bin' ], refreshonly => true, require => File["${auth_home}/on_update.sh"], notify => Service[$auth_service], -- GitLab