]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - modules/role/manifests/cryptoportfolio.pp
Handle postgresql sockets for cryptoportfolio app
[perso/Immae/Projets/Puppet.git] / modules / role / manifests / cryptoportfolio.pp
CommitLineData
0a21fb6c
IB
1class role::cryptoportfolio (
2 String $user,
3 String $group,
4 String $home,
5 Optional[String] $env = "prod",
6 Optional[String] $webhook_url = undef,
7 String $pg_user,
8 String $pg_user_replication,
9 String $pg_db,
eeac44ec 10 Optional[String] $pg_hostname = "/run/postgresql",
0a21fb6c 11 Optional[String] $pg_port = "5432",
d5f4e591 12 Optional[String] $redis_host = "/run/redis/redis.sock",
0a21fb6c
IB
13 Optional[String] $web_host = undef,
14 Optional[String] $web_port = "",
15 Optional[Boolean] $web_ssl = true,
16 Optional[String] $front_version = undef,
17 Optional[String] $front_sha256 = undef,
acaa9ea9
IB
18 Optional[String] $trader_version = undef,
19 Optional[String] $trader_sha256 = undef,
0a21fb6c 20) {
57ae81ea
IB
21 include "base_installation"
22
8af3ea1e 23 include "profile::tools"
57ae81ea 24 include "profile::postgresql"
2bb35074 25 include "profile::apache"
68bbff61 26 include "profile::xmr_stak"
bdcfd78f 27 include "profile::boinc"
57ae81ea 28
39e05b4e
IB
29 contain "role::cryptoportfolio::postgresql"
30 contain "role::cryptoportfolio::apache"
0a4ec379 31
39e05b4e 32 contain "role::cryptoportfolio::notify"
a4c92ff7 33
acaa9ea9 34 unless empty($trader_version) {
d5f4e591
IB
35 if versioncmp($trader_version, "v1.3") >= 0 {
36 include "profile::redis"
37 }
39e05b4e 38 contain "role::cryptoportfolio::bot"
236d7e6d
IB
39 }
40
9a6b0098 41 # FIXME: restore backup
76a321e1 42 unless empty($front_version) {
39e05b4e 43 contain "role::cryptoportfolio::front"
76a321e1 44 }
57ae81ea 45}