From 988664a46933352aa73af9f19225160d46c99548 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Thu, 23 Oct 2025 21:25:10 +0200 Subject: [PATCH] fix syntax - https://gitlab.confdroid.com/internal/confdroid_management/-/issues/284 --- manifests/r10k/webhook.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/r10k/webhook.pp b/manifests/r10k/webhook.pp index 3c9c411..d98241e 100644 --- a/manifests/r10k/webhook.pp +++ b/manifests/r10k/webhook.pp @@ -45,7 +45,7 @@ class puppet_cd::r10k::webhook ( } # create service config - file { $pt_r10k_hook_config_file: + file { $pt_r10k_hook_service_file: owner => 'root', group => 'root', mode => '0644', @@ -60,7 +60,7 @@ class puppet_cd::r10k::webhook ( service { 'r10k-webhook': ensure => 'running', enable => true, - subscribe => File[$pt_r10k_hook_config_file], + subscribe => File[$pt_r10k_hook_service_file], } } }