summaryrefslogtreecommitdiffstats
path: root/deploy/puppet/gluon/manifests/config.pp
blob: 1f928438717ded1e7f598606098a41e804dc51a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class gluon::config {

  file { '/etc/proton/proton-shim.conf':
    ensure  => 'file',
    owner   => 'proton',
    group   => 'proton',
    mode    => '640',
    content => template('gluon/proton-shim.conf.erb'),
  }

  file { '/etc/proton/proton.conf':
    ensure  => 'file',
    owner   => 'proton',
    group   => 'proton',
    mode    => '640',
    content => template('gluon/proton.conf.erb'),
  }

}