7fef3830c3e2aea2df7ac3360aef5b6d80526d19
[mirror/dsa-puppet.git] / modules / roles / manifests / static / srvdir.pp
1 # create the directory on static hosts and disable backups
2 class roles::static::srvdir {
3   file { '/srv/static.debian.org':
4     ensure => directory,
5     mode   => '0755',
6     owner  => 'staticsync',
7     group  => 'staticsync',
8   }
9
10   file { '/srv/static.debian.org/.nobackup':
11     content => '',
12   }
13 }