summaryrefslogtreecommitdiff
path: root/manifests/lens.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/lens.pp')
-rw-r--r--manifests/lens.pp64
1 files changed, 45 insertions, 19 deletions
diff --git a/manifests/lens.pp b/manifests/lens.pp
index b5b9acd..bda7a0c 100644
--- a/manifests/lens.pp
+++ b/manifests/lens.pp
@@ -6,7 +6,9 @@
#
# Parameters:
# ['ensure'] - present/absent
+# ['lens_content'] - the content of the lens
# ['lens_source'] - the source for the lens
+# ['test_content'] - optionally, the content of the test
# ['test_source'] - optionally, the source for the test file.
# ['stock_since'] - optionally, indicate in which version of Augeas
# the lens became stock, so it will not be deployed
@@ -15,19 +17,39 @@
# Example usage:
#
# augeas::lens { 'networkmanager':
-# lens_source => 'puppet:///modules/networkmanager/lenses/networkmanager.aug',
-# test_source => 'puppet:///modules/networkmanager/lenses/test_networkmanager.aug',
-# stock_since => '1.0.0',
+# lens_content => file('networkmanager/lenses/networkmanager.aug'),
+# test_content => file('networkmanager/lenses/test_networkmanager.aug'),
+# stock_since => '1.0.0',
# }
#
define augeas::lens (
- $lens_source,
- $ensure=present,
- $test_source=false,
- $stock_since=false,
+ $ensure = present,
+ $lens_content = undef,
+ $lens_source = undef,
+ $test_content = undef,
+ $test_source = undef,
+ $stock_since = false,
) {
- if !defined(Class['augeas']) {
- fail('You must declare the augeas class before using augeas::lens')
+ include ::augeas
+
+ if $lens_source != undef {
+ if $lens_content != undef {
+ fail "You can't set both \$lens_source and \$lens_content"
+ } else {
+ warning 'Passing "lens_source" is deprecated; please use "lens_content"'
+ }
+ } else {
+ if $lens_content == undef {
+ fail "You must set either \$lens_source or \$lens_content"
+ }
+ }
+
+ if $test_source != undef {
+ if $test_content != undef {
+ fail "You can't set both \$test_source and \$test_content"
+ } else {
+ warning 'Passing "test_source" is deprecated; please use "test_content"'
+ }
}
File {
@@ -36,10 +58,6 @@ define augeas::lens (
mode => '0644',
}
- Exec {
- path => $::path,
- }
-
if (!$stock_since or versioncmp($::augeasversion, $stock_since) < 0) {
validate_re(
@@ -51,26 +69,34 @@ define augeas::lens (
$lens_dest = "${augeas::lens_dir}/${name}.aug"
$test_dest = "${augeas::lens_dir}/tests/test_${name}.aug"
+ # lint:ignore:source_without_rights
file { $lens_dest:
- ensure => $ensure,
- source => $lens_source,
+ ensure => $ensure,
+ source => $lens_source,
+ content => $lens_content,
}
+ # lint:endignore
exec { "Typecheck lens ${name}":
command => "augparse -I ${augeas::lens_dir} ${lens_dest} || (rm -f ${lens_dest} && exit 1)",
+ path => "/opt/puppetlabs/puppet/bin:${::path}",
refreshonly => true,
subscribe => File[$lens_dest],
}
- if $test_source {
+ if $test_source or $test_content {
+ # lint:ignore:source_without_rights
file { $test_dest:
- ensure => $ensure,
- source => $test_source,
- notify => Exec["Test lens ${name}"],
+ ensure => $ensure,
+ source => $test_source,
+ content => $test_content,
+ notify => Exec["Test lens ${name}"],
}
+ # lint:endignore
exec { "Test lens ${name}":
command => "augparse -I ${augeas::lens_dir} ${test_dest} || (rm -f ${lens_dest} && rm -f ${test_dest} && exit 1)",
+ path => "/opt/puppetlabs/puppet/bin:${::path}",
refreshonly => true,
subscribe => File[$lens_dest, $test_dest],
}