summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp13
1 files changed, 12 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index b33bf58..a9ebad0 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1 +1,12 @@
-import "classes/*.pp"
+class augeas {
+
+ if ( ! $augeas_version ) {
+ $augeas_version = "present"
+ }
+
+ case $operatingsystem {
+ /RedHat|CentOS|Fedora/: { include augeas::redhat }
+ /Debian|Ubuntu|kFreeBSD/: { include augeas::debian }
+ default: { include augeas::base }
+ }
+}