diff options
Diffstat (limited to 'deploy/puppet/gluon/manifests/install.pp')
-rw-r--r-- | deploy/puppet/gluon/manifests/install.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deploy/puppet/gluon/manifests/install.pp b/deploy/puppet/gluon/manifests/install.pp new file mode 100644 index 0000000..234da49 --- /dev/null +++ b/deploy/puppet/gluon/manifests/install.pp @@ -0,0 +1,11 @@ +class gluon::install { + + package { 'python-click': + ensure => installed, + } + + package { 'gluon': + ensure => installed, + } + +} |