summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/freebsd.pp7
-rw-r--r--manifests/init.pp7
2 files changed, 14 insertions, 0 deletions
diff --git a/manifests/freebsd.pp b/manifests/freebsd.pp
new file mode 100644
index 0000000..1fe28d0
--- /dev/null
+++ b/manifests/freebsd.pp
@@ -0,0 +1,7 @@
+class puppet::freebsd inherits puppet::base {
+
+ Service['puppet'] {
+ path => '/usr/local/etc/rc.d',
+ }
+
+}
diff --git a/manifests/init.pp b/manifests/init.pp
index e9d9748..69d9b18 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -19,6 +19,13 @@
#
class puppet {
+ $puppet_default_config = $kernel ? {
+ freebsd => '/usr/local/etc/puppet/puppet.conf',
+ default => '/etc/puppet/puppet.conf',
+ }
+
+ if $puppet_config == '' { $puppet_config = $puppet_default_config }
+
case $kernel {
linux: {
case $operatingsystem {