blob: 4cfad19b9b421e15007a532d0c87f8b35f7f021b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class gluon::config {
file { '/etc/proton/proton-shim.conf':
ensure => 'file',
owner => 'proton',
group => 'proton',
mode => '640',
content => template('gluon/proton-shim.conf.erb'),
}
}
|