From a5763a517ebaed72c8ae81e4dd70fd5acfc0b2b1 Mon Sep 17 00:00:00 2001 From: "a@a.ru" Date: Thu, 16 May 2019 14:07:17 +0300 Subject: [PATCH 1/4] Possible fix for the Slack/VS Code issue --- roles/main_software/tasks/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/main_software/tasks/main.yml b/roles/main_software/tasks/main.yml index 78bf729..1256940 100644 --- a/roles/main_software/tasks/main.yml +++ b/roles/main_software/tasks/main.yml @@ -135,8 +135,7 @@ command: "pkill -f {{ item }}" with_items: - beam.smp - - node - - erlang + - webpack.js failed_when: false when: From 4a737d83f602d23129a9086bf1c9ce70aa594b75 Mon Sep 17 00:00:00 2001 From: Arsenii Petrovich Date: Thu, 16 May 2019 22:26:01 +0300 Subject: [PATCH 2/4] Fix example config typo --- group_vars/all.yml.example | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/group_vars/all.yml.example b/group_vars/all.yml.example index d08ced7..69f291d 100644 --- a/group_vars/all.yml.example +++ b/group_vars/all.yml.example @@ -40,8 +40,7 @@ chain_custom_environment: POOL_SIZE: 20 # Defines the number of database connections allowed ECTO_USE_SSL: "false" # Specifies whether or not to use SSL on Ecto queries ALB_SSL_POLICY: "ELBSecurityPolicy-2016-08" #SSL policy for Load Balancer. Required if ECTO_USE_SSL is set to true - ALB_CERTIFICATE_ARN: "arn:aws:acm:us-east-1:290379793816:certificate/6d1bab74-fb46-4244-aab2-832bf519ab24" #ARN of the certificate to attach to the LB. Required if ECTO_USE_SSL is set to - true + ALB_CERTIFICATE_ARN: "arn:aws:acm:us-east-1:290379793816:certificate/6d1bab74-fb46-4244-aab2-832bf519ab24" #ARN of the certificate to attach to the LB. Required if ECTO_USE_SSL is set to true HEART_BEAT_TIMEOUT: 30 # Heartbeat is an Erlang monitoring service that will restart BlockScout if it becomes unresponsive. This variables configures the timeout before Blockscout will be restarted. HEART_COMMAND: "sudo systemctl restart explorer.service" # This variable represents a command that is used to restart the service BLOCKSCOUT_VERSION: "v1.3.11-beta" # Added to the footer to signify the current BlockScout version From 9dec1ab49135f6b9dfdfdaf45e2d08071ddd5b0e Mon Sep 17 00:00:00 2001 From: ArseniiPetrovich Date: Thu, 16 May 2019 22:29:34 +0300 Subject: [PATCH 3/4] Move terraform variable to correct file --- group_vars/blockscout.yml.example | 3 --- group_vars/infrastructure.yml.example | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/group_vars/blockscout.yml.example b/group_vars/blockscout.yml.example index f31ec5d..7d9afd2 100644 --- a/group_vars/blockscout.yml.example +++ b/group_vars/blockscout.yml.example @@ -1,8 +1,5 @@ # BlockScout related variables -## Exact path to the TF binary on your local machine -terraform_location: "/usr/local/bin/terraform" - ## An address of BlockScout repo to download blockscout_repo: https://github.com/poanetwork/blockscout diff --git a/group_vars/infrastructure.yml.example b/group_vars/infrastructure.yml.example index 6532971..6bf11b1 100644 --- a/group_vars/infrastructure.yml.example +++ b/group_vars/infrastructure.yml.example @@ -1,5 +1,8 @@ # Infrastructure related variables +## Exact path to the TF binary on your local machine +terraform_location: "/usr/local/bin/terraform" + ## Name of the DynamoDB table where current lease of TF state file will be stored dynamodb_table: "poa-terraform-lock" From a91cfdf4b92dd6503d4347e89ca01d500080e7fe Mon Sep 17 00:00:00 2001 From: Arsenii Petrovich Date: Mon, 10 Jun 2019 14:26:17 +0300 Subject: [PATCH 4/4] Update link to ERLANG --- roles/main_infra/files/libexec/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/main_infra/files/libexec/init.sh b/roles/main_infra/files/libexec/init.sh index d485c5b..62316df 100755 --- a/roles/main_infra/files/libexec/init.sh +++ b/roles/main_infra/files/libexec/init.sh @@ -147,7 +147,7 @@ EOF log "Installing Erlang.." -wget http://packages.erlang-solutions.com/site/esl/esl-erlang/FLAVOUR_1_general/esl-erlang_21.1-1~centos~7_amd64.rpm +wget https://packages.erlang-solutions.com/erlang/rpm/centos/7/x86_64/esl-erlang_21.1-1~centos~7_amd64.rpm yum localinstall -y wxGTK-devel unixODBC-devel >"$LOG" yum localinstall -y esl-erlang_21.1-1~centos~7_amd64.rpm >"$LOG"