aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/schroot.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-09-13 13:14:03 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-09-13 13:14:03 -0300
commit066aed3b86377004786972b6dccfbc631011a6f2 (patch)
tree1a855c1cc6a87634ed7566146fe8c7c7b32f7c57 /manifests/subsystems/schroot.pp
parentc37ef44f267075ec52b3e3ed0f236eed235ee863 (diff)
downloadpuppet-nodo-066aed3b86377004786972b6dccfbc631011a6f2.tar.gz
puppet-nodo-066aed3b86377004786972b6dccfbc631011a6f2.tar.bz2
Adding schroot class
Diffstat (limited to 'manifests/subsystems/schroot.pp')
-rw-r--r--manifests/subsystems/schroot.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/subsystems/schroot.pp b/manifests/subsystems/schroot.pp
new file mode 100644
index 0000000..d6c4c13
--- /dev/null
+++ b/manifests/subsystems/schroot.pp
@@ -0,0 +1,13 @@
+class schroot {
+ package { 'schroot':
+ ensure => installed,
+ }
+
+ file { '/etc/schroot/schroot.conf':
+ ensure => present,
+ owner => root,
+ mode => 0644,
+ require => Package['schroot'],
+ source => "puppet:///modules/site-nodo/schroot/$fqdn/schroot.conf",
+ }
+}