From 8080ef48f4e53d9ce2230ad6bf068af5cf74e149 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Thu, 23 Oct 2025 21:30:10 +0200 Subject: [PATCH 1/2] fix syntax - https://gitlab.confdroid.com/internal/confdroid_management/-/issues/284 --- manifests/r10k/webhook.pp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/manifests/r10k/webhook.pp b/manifests/r10k/webhook.pp index d98241e..96e8731 100644 --- a/manifests/r10k/webhook.pp +++ b/manifests/r10k/webhook.pp @@ -58,9 +58,11 @@ class puppet_cd::r10k::webhook ( # manage service service { 'r10k-webhook': - ensure => 'running', - enable => true, - subscribe => File[$pt_r10k_hook_service_file], + ensure => 'running', + hasstatus => true, + hasrestart => true, + enable => true, + subscribe => File[$pt_r10k_hook_service_file], } } } From 4edc0ce073a97e62c995b25faa285ef2681f1ea4 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Thu, 23 Oct 2025 21:32:00 +0200 Subject: [PATCH 2/2] Recommit for updates in build 29 --- .../puppet_cd_3A_3Ar10k_3A_3Awebhook.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/puppet_classes/puppet_cd_3A_3Ar10k_3A_3Awebhook.html b/doc/puppet_classes/puppet_cd_3A_3Ar10k_3A_3Awebhook.html index d2b7101..193d574 100644 --- a/doc/puppet_classes/puppet_cd_3A_3Ar10k_3A_3Awebhook.html +++ b/doc/puppet_classes/puppet_cd_3A_3Ar10k_3A_3Awebhook.html @@ -161,7 +161,9 @@ 63 64 65 -66 +66 +67 +68
# File 'manifests/r10k/webhook.pp', line 6
@@ -221,9 +223,11 @@ class puppet_cd::r10k::webhook (
 
     # manage service
     service { 'r10k-webhook':
-      ensure    => 'running',
-      enable    => true,
-      subscribe => File[$pt_r10k_hook_service_file],
+      ensure     => 'running',
+      hasstatus  => true,
+      hasrestart => true,
+      enable     => true,
+      subscribe  => File[$pt_r10k_hook_service_file],
     }
   }
 }