summaryrefslogtreecommitdiffstats
path: root/deploy/puppet/gluon/modules/gluon/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/puppet/gluon/modules/gluon/manifests')
-rwxr-xr-xdeploy/puppet/gluon/modules/gluon/manifests/init.pp1
-rw-r--r--deploy/puppet/gluon/modules/gluon/manifests/install.pp11
-rwxr-xr-xdeploy/puppet/gluon/modules/gluon/manifests/post.pp11
3 files changed, 23 insertions, 0 deletions
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/init.pp b/deploy/puppet/gluon/modules/gluon/manifests/init.pp
new file mode 100755
index 0000000..77f22a9
--- /dev/null
+++ b/deploy/puppet/gluon/modules/gluon/manifests/init.pp
@@ -0,0 +1 @@
+class gluon { }
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/install.pp b/deploy/puppet/gluon/modules/gluon/manifests/install.pp
new file mode 100644
index 0000000..28dbca2
--- /dev/null
+++ b/deploy/puppet/gluon/modules/gluon/manifests/install.pp
@@ -0,0 +1,11 @@
+class gluon::install inherits gluon {
+
+ package { 'python-click':
+ ensure => installed,
+ }
+
+ package { 'gluon':
+ ensure => installed,
+ }
+
+}
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/post.pp b/deploy/puppet/gluon/modules/gluon/manifests/post.pp
new file mode 100755
index 0000000..dc3ac21
--- /dev/null
+++ b/deploy/puppet/gluon/modules/gluon/manifests/post.pp
@@ -0,0 +1,11 @@
+class gluon::post inherits gluon {
+
+ file { '/etc/proton/proton-shim.conf':
+ ensure => 'file',
+ owner => 'proton',
+ group => 'proton',
+ mode => 'go+w',
+ content => template('gluon/proton-shim.conf.erb'),
+ }
+
+}