aboutsummaryrefslogtreecommitdiff
path: root/manifests/defines/config_file.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-01-03 16:49:04 +0100
committermh <mh@immerda.ch>2013-01-03 16:49:04 +0100
commit47c385f4794fae0257dd3ab85b637eca93ee38ec (patch)
tree57a9f8bdd0ad2a492b8a5566173620986d67edef /manifests/defines/config_file.pp
parent50a1943175bd203116d100eb5cf4f01f2fc6ded1 (diff)
downloadpuppet-common-47c385f4794fae0257dd3ab85b637eca93ee38ec.tar.gz
puppet-common-47c385f4794fae0257dd3ab85b637eca93ee38ec.tar.bz2
cleanup module to work better on newer puppet versions
Diffstat (limited to 'manifests/defines/config_file.pp')
-rw-r--r--manifests/defines/config_file.pp55
1 files changed, 0 insertions, 55 deletions
diff --git a/manifests/defines/config_file.pp b/manifests/defines/config_file.pp
deleted file mode 100644
index 2be2460..0000000
--- a/manifests/defines/config_file.pp
+++ /dev/null
@@ -1,55 +0,0 @@
-# common/manifests/defines/config_file.pp -- create a config file with default permissions
-# Copyright (C) 2007 David Schmitt <david@schmitt.edv-bus.at>
-# See LICENSE for the full license granted to you.
-
-# A simple wrapper to give all configuration files common defaults.
-#
-# Usage:
-# config_file { filename:
-# content => "....\n",
-# }
-#
-# Examples:
-#
-# To create the file /etc/vservers/${vs_name}/context with specific
-# content:
-#
-# config_file { "/etc/vservers/${vs_name}/context":
-# content => "${context}\n",
-# notify => Exec["vs_restart_${vs_name}"],
-# require => Exec["vs_create_${vs_name}"];
-# }
-#
-# To create the file /etc/apache2/sites-available/munin-stats with the
-# content pulled from a template:
-#
-# config_file { "/etc/apache2/sites-available/munin-stats":
-# content => template("apache/munin-stats"),
-# require => Package["apache2"],
-# notify => Exec["reload-apache2"]
-# }
-
-define config_file ($content = '', $source = '', $ensure = 'present') {
- file { $name:
- ensure => $ensure,
- # keep old versions on the server
- backup => puppet,
- # default permissions for config files
- mode => 0644, owner => root, group => 0,
- # really detect changes to this file
- checksum => md5,
- }
-
- case $source {
- '': { }
- default: { File[$name] { source => $source } }
- }
-
- case $content {
- '': { }
- default: { File[$name] { content => $content } }
- }
-
-}
-
-