From 077d5f3ad794362858990944966495aeadc1f6cd Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Sat, 25 Oct 2025 19:02:53 +0200 Subject: [PATCH] add local rpm - https://gitlab.confdroid.com/internal/confdroid_management/-/issues/284 --- manifests/r10k/install.pp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manifests/r10k/install.pp b/manifests/r10k/install.pp index 3302867..a49f6ce 100644 --- a/manifests/r10k/install.pp +++ b/manifests/r10k/install.pp @@ -59,9 +59,10 @@ class puppet_cd::r10k::install ( source => 'puppet:///modules/puppet_cd/webhook-go.rpm' } - package { $pt_r10k_webhook_pkg: + exec { 'install rpm': + command = "yum install ${pt_r10k_webhook_pkg}", ensure => $pt_pkg_ensure, - require => File[$pt_r10k_webhook_pkg] + require => File[$pt_r10k_webhook_pkg], } } }