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, 0 insertions, 23 deletions
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/init.pp b/deploy/puppet/gluon/modules/gluon/manifests/init.pp
deleted file mode 100755
index 77f22a9..0000000
--- a/deploy/puppet/gluon/modules/gluon/manifests/init.pp
+++ /dev/null
@@ -1 +0,0 @@
-class gluon { }
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/install.pp b/deploy/puppet/gluon/modules/gluon/manifests/install.pp
deleted file mode 100644
index 28dbca2..0000000
--- a/deploy/puppet/gluon/modules/gluon/manifests/install.pp
+++ /dev/null
@@ -1,11 +0,0 @@
-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
deleted file mode 100755
index dc3ac21..0000000
--- a/deploy/puppet/gluon/modules/gluon/manifests/post.pp
+++ /dev/null
@@ -1,11 +0,0 @@
-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'),
- }
-
-}