5a87bd31a4bc5ae11274a466ace0c794aa168258
[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 }