From bb7ee6e887ff1d84364871aaca7c822bd9d9a8bf Mon Sep 17 00:00:00 2001 From: 12ww1160 <12ww1160@confdroid.com> Date: Sun, 29 Mar 2026 16:38:22 +0200 Subject: [PATCH 1/2] OP#547 revert array to string --- manifests/params.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index 558ed25..bdf77f8 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -12,7 +12,7 @@ # @param [String] ac_apply_updates whether to apply available updates # @param [String] ac_reboot when to reboot after applied updates # @param [String] ac_emit_via how to inform about emitted updates -# @param [Array[String]] ac_email_to where to send the email to +# @param [String] ac_email_to where to send the email to # @param [String] ac_email_host which host to use to send the email ############################################################################## class confdroid_automatic::params ( @@ -28,7 +28,7 @@ class confdroid_automatic::params ( String $ac_apply_updates = 'yes', String $ac_reboot = 'never', String $ac_emit_via = 'email', - Array[String] $ac_email_to = ['root@example.net','ops@example.net'], + String $ac_email_to = 'root@example.net', String $ac_email_host = 'localhost', ) { From 983e6edb7e79e727d2fe188e958c5414cd4d5eef Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Sun, 29 Mar 2026 16:39:32 +0200 Subject: [PATCH 2/2] Recommit for updates in build 5 --- doc/puppet_classes/confdroid_automatic_3A_3Aparams.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/puppet_classes/confdroid_automatic_3A_3Aparams.html b/doc/puppet_classes/confdroid_automatic_3A_3Aparams.html index 1fb97ab..b10768b 100644 --- a/doc/puppet_classes/confdroid_automatic_3A_3Aparams.html +++ b/doc/puppet_classes/confdroid_automatic_3A_3Aparams.html @@ -273,10 +273,10 @@ ac_email_to - (Array[String]) + (String) - (defaults to: ['root@example.net','ops@example.net']) + (defaults to: 'root@example.net') — @@ -365,7 +365,7 @@ class confdroid_automatic::params ( String $ac_apply_updates = 'yes', String $ac_reboot = 'never', String $ac_emit_via = 'email', - Array[String] $ac_email_to = ['root@example.net','ops@example.net'], + String $ac_email_to = 'root@example.net', String $ac_email_host = 'localhost', ) {