summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Pinson <raphael.pinson@camptocamp.com>2015-01-12 08:55:16 +0100
committerRaphaël Pinson <raphael.pinson@camptocamp.com>2015-01-12 08:55:16 +0100
commit6e8c8b7e9b798fb6091dcba593e362e9e6f914a7 (patch)
treec5577ff0e7d88000a950d892a8604ad8349e2ef5
parentbf4c2ffa6f9f1935d9e7c49719d23ab0692b20fe (diff)
Ignore spaceship_operator_without_tag + note in README
-rw-r--r--README.md3
-rw-r--r--manifests/init.pp2
2 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4a7bed1..e2055b0 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,9 @@ The module provides an `augeas` class which installs and configures Augeas.
only ensure the libaugeas-ruby version will be installed according to internal critera;
* provides an `augeas()` master-side function to manipulate strings using Augeas;
+Note: the `augeas` class realizes all `augeas` resources in order to ensure they are managed after the required Augeas packages.
+
+
### Definitions
#### `augeas::lens`
diff --git a/manifests/init.pp b/manifests/init.pp
index 4289765..41f4f87 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -18,5 +18,7 @@ class augeas (
class {'::augeas::files': } ->
Class['augeas']
+ # lint:ignore:spaceship_operator_without_tag
Package['ruby-augeas', $augeas::params::augeas_pkgs] -> Augeas <| |>
+ # lint:endignore
}