aboutsummaryrefslogtreecommitdiff
path: root/manifests/auth/local.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/auth/local.pp')
-rw-r--r--manifests/auth/local.pp15
1 files changed, 9 insertions, 6 deletions
diff --git a/manifests/auth/local.pp b/manifests/auth/local.pp
index bc15dad..361ada7 100644
--- a/manifests/auth/local.pp
+++ b/manifests/auth/local.pp
@@ -40,11 +40,14 @@ class concourse::auth::local (
mode => '0600',
}
- systemd::manage_dropin { 'concourse-local-auth':
- ensure => $ensure,
- unit => $concourse::web::service_unit,
- service_entry => {
- 'EnvironmentFile' => $env_file,
- },
+ $dropin_content = @("EOF")
+ [Service]
+ EnvironmentFile=${env_file}
+ | EOF
+
+ systemd::dropin_file { 'concourse-local-auth':
+ ensure => $ensure,
+ unit => $concourse::web::service_unit,
+ content => $dropin_content,
}
}