From bf88331f16c69c7acea77e4d2c08bffed154a04e Mon Sep 17 00:00:00 2001 From: Tim 'bastelfreak' Meusel Date: Tue, 29 Aug 2023 13:13:07 +0200 Subject: [PATCH] puppet-lint: Disable check_unsafe_interpolations false positive background information: https://github.com/puppetlabs/puppet-lint/pull/142 --- manifests/install/bundle.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/install/bundle.pp b/manifests/install/bundle.pp index 59a5895f..333ba770 100644 --- a/manifests/install/bundle.pp +++ b/manifests/install/bundle.pp @@ -16,7 +16,7 @@ source => $source, revision => $revision, } - exec { "${module_name}-install-via-bundle": + exec { "${module_name}-install-via-bundle": # lint:ignore:check_unsafe_interpolations command => 'bundle && bundle install --path /opt/ --binstubs /usr/local/bin/', cwd => '/tmp/r10k', require => [Package["${module_name}-bundle"], Vcsrepo["${module_name}-r10k-github"]],