summaryrefslogtreecommitdiff
path: root/manifests/user_scandir.pp
blob: 8e5ee5851feea93f4e9312d01f186982b802abd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
define s6::user_scandir(
  Optional[String] $homedir = undef,
) {
  $scandir = '/etc/s6-scandir'

  file {
    "${scandir}/user_scandir_${title}":
      ensure => directory,
      ;
    "${scandir}/user_scandir_${title}/run":
      ensure  => present,
      content => epp('s6/user_scandir/run.epp', { 'username' => $title } ),
      mode    => '0744',
      ;
    "${scandir}/user_scandir_${title}/log":
      ensure => directory,
      ;
    "${scandir}/user_scandir_${title}/log/run":
      ensure  => present,
      content => epp('s6/user_scandir/log/run.epp', { 'username' => $title } ),
      mode    => '0744',
      ;
    [
      "/var/log/s6/user_scandir_${title}/",
      "/var/log/s6/user_scandir_${title}/logs/",
    ]:
      ensure => directory,
    ;
  }
}