aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/schroot.pp
diff options
context:
space:
mode:
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",
+ }
+}