From 0157c430705db2ffb5a86bf191175d6d0e92dc8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 18 Dec 2021 20:01:26 +0100 Subject: Sat, 18 Dec 2021 20:01:25 +0100 --- puppet.wiki | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'puppet.wiki') diff --git a/puppet.wiki b/puppet.wiki index dc208ea..5170387 100644 --- a/puppet.wiki +++ b/puppet.wiki @@ -8,3 +8,30 @@ require :: Applies a resource after the target resource. notify :: Applies a resource before the target resource. The target resource refreshes if the notifying resource changes. subscribe :: Applies a resource after the target resource. The subscribing resource refreshes if the target resource changes. +=== Multiple declaration in single resource block === + +{{{puppet + ini_setting { + default: + ensure => $ensure, + path => $::pacman::conf_path, + section => $repo_name , + ; + "Pacman repo [${repo_name}] server": + setting => 'Server', + value => $server , + ; + "Pacman repo [${repo_name}] SigLevel": + setting => 'SigLevel', + value => $sig_level , + ; + } +}}} + +=== Type Case === +{{{puppet +$variable ? { + Array => 'one thing', + String => 'Anothing thing' +} +}}} -- cgit v1.2.3