From db9bd4405a84d78fa6eaa4f14f94562c5dcc21c7 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Tue, 18 Dec 2018 11:13:19 +0100 Subject: [PATCH] Fix lint Fixes lint issues now that the lint jobs fail properly. Change-Id: I4bc59f88d80c1337e45eee131567a8c76e4f7371 --- manifests/proxy/tempauth_account.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/proxy/tempauth_account.pp b/manifests/proxy/tempauth_account.pp index 791f5c07..15f8f5c4 100644 --- a/manifests/proxy/tempauth_account.pp +++ b/manifests/proxy/tempauth_account.pp @@ -19,7 +19,7 @@ define swift::proxy::tempauth_account() { $account_data = strip(split($title,',')) if $account_data[0] != '' { swift_proxy_config { - "filter:tempauth/${account_data[0]}": value => "${account_data[1]}"; + "filter:tempauth/${account_data[0]}": value => $account_data[1]; } } }