diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-02-18 12:29:12 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-02-18 19:28:36 +0100 |
commit | f67c5285ae3847366129228576a1b41aad7cf05d (patch) | |
tree | 8abe66d89192a74465d96dd6a2bd917ae51a3335 /modules/role/manifests | |
parent | 0a4ec3790f89873bf37a1362a6f7e70b103e9bc2 (diff) | |
download | Puppet-f67c5285ae3847366129228576a1b41aad7cf05d.tar.gz Puppet-f67c5285ae3847366129228576a1b41aad7cf05d.tar.zst Puppet-f67c5285ae3847366129228576a1b41aad7cf05d.zip |
Add missing packages
Diffstat (limited to 'modules/role/manifests')
-rw-r--r-- | modules/role/manifests/cryptoportfolio.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/role/manifests/cryptoportfolio.pp b/modules/role/manifests/cryptoportfolio.pp index 16c2f96..4643f9e 100644 --- a/modules/role/manifests/cryptoportfolio.pp +++ b/modules/role/manifests/cryptoportfolio.pp | |||
@@ -27,12 +27,12 @@ class role::cryptoportfolio { | |||
27 | order => "b0", | 27 | order => "b0", |
28 | } | 28 | } |
29 | 29 | ||
30 | ensure_packages("go") | ||
31 | |||
32 | class { 'nginx': } | 30 | class { 'nginx': } |
33 | 31 | ||
34 | nginx::resource::server { 'cryptoportfolio.immae.eu': | 32 | nginx::resource::server { 'cryptoportfolio.immae.eu': |
35 | listen_port => 80, | 33 | listen_port => 80, |
36 | proxy => 'http://localhost:8000', | 34 | proxy => 'http://localhost:8000', |
37 | } | 35 | } |
36 | |||
37 | ensure_packages(["go", "npm", "nodejs", "yarn"]) | ||
38 | } | 38 | } |