summaryrefslogtreecommitdiffstats
path: root/deploy/puppet/gluon/manifests/config.pp
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/puppet/gluon/manifests/config.pp')
-rw-r--r--deploy/puppet/gluon/manifests/config.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/deploy/puppet/gluon/manifests/config.pp b/deploy/puppet/gluon/manifests/config.pp
new file mode 100644
index 0000000..4cfad19
--- /dev/null
+++ b/deploy/puppet/gluon/manifests/config.pp
@@ -0,0 +1,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'),
+ }
+
+}