summaryrefslogtreecommitdiff
path: root/manifests/fragment.pp
diff options
context:
space:
mode:
authorChristian G. Warden <cwarden@xerus.org>2011-12-05 14:37:18 -0800
committerChristian G. Warden <cwarden@xerus.org>2011-12-05 16:19:24 -0800
commit772241575315a4881ec0e01ac12ee6549970ef30 (patch)
treee41cba29bcb6d4f1d3059996c471a910d01ed800 /manifests/fragment.pp
parent0cd6bacfc92e581a988c2c82cc23472dff63a8b0 (diff)
Fix use of unqualified variable names
Fully qualify $::id, $::puppetversion, and $::concat_basedir.
Diffstat (limited to 'manifests/fragment.pp')
-rw-r--r--manifests/fragment.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/fragment.pp b/manifests/fragment.pp
index 1fb4128..97c0d9c 100644
--- a/manifests/fragment.pp
+++ b/manifests/fragment.pp
@@ -13,7 +13,7 @@
# - group Owner of the file
# - backup Controls the filebucketing behavior of the final file and
# see File type reference for its use. Defaults to 'puppet'
-define concat::fragment($target, $content='', $source='', $order=10, $ensure = "present", $mode = 0644, $owner = $id, $group = $concat::setup::root_group, $backup = "puppet") {
+define concat::fragment($target, $content='', $source='', $order=10, $ensure = "present", $mode = 0644, $owner = $::id, $group = $concat::setup::root_group, $backup = "puppet") {
$safe_name = regsubst($name, '/', '_', 'G')
$safe_target_name = regsubst($target, '/', '_', 'G')
$concatdir = $concat::setup::concatdir