diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-11-11 18:39:21 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-11-11 18:39:21 -0200 |
commit | 921d387f2b406eec4da42431a9f57d5a0238116d (patch) | |
tree | 1973628627f812cdc854524b7206f8f55fdd4538 /manifests | |
parent | cdba8791731836be56aa396456da96b9606e2d56 (diff) | |
download | puppet-nodo-921d387f2b406eec4da42431a9f57d5a0238116d.tar.gz puppet-nodo-921d387f2b406eec4da42431a9f57d5a0238116d.tar.bz2 |
Adding nodo::subsystem::pbuilder
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/pbuilder.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/subsystem/pbuilder.pp b/manifests/subsystem/pbuilder.pp new file mode 100644 index 0000000..4fa0fc4 --- /dev/null +++ b/manifests/subsystem/pbuilder.pp @@ -0,0 +1,9 @@ +class nodo::subsystem::pbuilder { + file { '/etc/pbuilderrc': + ensure => present, + owner => root, + group => root, + mode => 0644, + source => 'puppet:///modules/nodo/etc/pbuilderrc', + } +} |