diff options
author | Georg Kunz <georg.kunz@ericsson.com> | 2017-02-12 01:33:05 +0100 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2017-02-12 20:11:51 +0100 |
commit | b1c66830c2fa87d07b79fb6706a2eb644d39d471 (patch) | |
tree | 9f3b9fde8211c87868f7a1d7aa797336e63c7dea /deploy/puppet/gluon/manifests/config.pp | |
parent | d31cfcc80428088cc4ddbabd721e01ff6265a8fc (diff) |
Extending Gluon puppet manifests
* correctly reading etcd data from hieradata
* template for proton.conf config file
Change-Id: I62728f84a932d1dfef54b548a1e97b22bf06fcd8
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Diffstat (limited to 'deploy/puppet/gluon/manifests/config.pp')
-rw-r--r-- | deploy/puppet/gluon/manifests/config.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/deploy/puppet/gluon/manifests/config.pp b/deploy/puppet/gluon/manifests/config.pp index 4cfad19..1f92843 100644 --- a/deploy/puppet/gluon/manifests/config.pp +++ b/deploy/puppet/gluon/manifests/config.pp @@ -8,4 +8,12 @@ class gluon::config { 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'), + } + } |