Make staticsync a module and update references
[mirror/dsa-puppet.git] / modules / staticsync / manifests / srvdir.pp
1 # create the directory on static hosts and disable backups
2 class staticsync::srvdir (
3 ) {
4   file { $staticsync::basedir:
5     ensure => directory,
6     mode   => '0755',
7     owner  => $staticsync::user,
8     group  => $staticsync::user,
9   }
10
11   file { "${staticsync::basedir}/.nobackup":
12     content => '',
13   }
14 }