9038003134
git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@56 f03ff2f1-f02d-0410-970d-b9634babeaa1
21 lines
543 B
Puppet
21 lines
543 B
Puppet
# common/manifests/defines/config_file.pp -- put 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.
|
|
|
|
# Usage:
|
|
# config_file { filename:
|
|
# content => "....\n",
|
|
# }
|
|
define config_file ($content) {
|
|
file { $name:
|
|
content => $content,
|
|
# keep old versions on the server
|
|
backup => server,
|
|
# default permissions for config files
|
|
mode => 0644, owner => root, group => root,
|
|
# really detect changes to this file
|
|
checksum => md5,
|
|
}
|
|
}
|
|
|
|
|