Browse Source

Preparations and fixes for AWS deployments

pull/1943/head
Greg Szabo 7 years ago
parent
commit
4cb362d625
13 changed files with 12 additions and 12 deletions
  1. +1
    -1
      ansible/install.yml
  2. +0
    -0
      ansible/inventory/ec2.py
  3. +1
    -1
      ansible/reset.yml
  4. +1
    -1
      ansible/restart.yml
  5. +1
    -1
      ansible/start.yml
  6. +1
    -1
      ansible/status.yml
  7. +1
    -1
      ansible/stop.yml
  8. +1
    -1
      ansible/ubuntu16-patch.yml
  9. +1
    -1
      ansible/upgrade-reset.yml
  10. +1
    -1
      build/spectemplates/basecoin.spec
  11. +1
    -1
      build/spectemplates/ethermint.spec
  12. +1
    -1
      build/spectemplates/gaia.spec
  13. +1
    -1
      build/spectemplates/trackomatron.spec

+ 1
- 1
ansible/install.yml View File

@ -2,7 +2,7 @@
#variable "service" is required
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
- install
- {role: config, testnet_name: "{{lookup('env','TF_VAR_TESTNET_NAME')}}"}


+ 0
- 0
ansible/inventory/ec2.py View File


+ 1
- 1
ansible/reset.yml View File

@ -1,6 +1,6 @@
---
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
become: yes
roles:
- stop


+ 1
- 1
ansible/restart.yml View File

@ -2,7 +2,7 @@
#variable "service" is required
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
- stop
- start

+ 1
- 1
ansible/start.yml View File

@ -2,7 +2,7 @@
#variable "service" is required
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
- start

+ 1
- 1
ansible/status.yml View File

@ -2,7 +2,7 @@
#variable "service" is required
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
- status

+ 1
- 1
ansible/stop.yml View File

@ -2,7 +2,7 @@
#variable "service" is required
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
- stop

+ 1
- 1
ansible/ubuntu16-patch.yml View File

@ -1,7 +1,7 @@
---
#Ubuntu 16.04 is not installing the python package in the standard installation on DigitalOcean. This "patch" will install it so the rest of the ansible playbooks can work properly.
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
gather_facts: no
tasks:
- raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)


+ 1
- 1
ansible/upgrade-reset.yml View File

@ -2,7 +2,7 @@
#variable "service" is required
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
- stop
- install


+ 1
- 1
build/spectemplates/basecoin.spec View File

@ -12,7 +12,7 @@ URL: https://tendermint.com/
Packager: Greg Szabo
Requires: tendermint >= 0.10.0
Provides: basecli
Requires(pre): /sbin/useradd
Requires(pre): useradd
%description
Basecoin is an ABCI application designed to be used with the Tendermint consensus engine to form a Proof-of-Stake cryptocurrency. It also provides a general purpose framework for extending the feature-set of the cryptocurrency by implementing plugins.


+ 1
- 1
build/spectemplates/ethermint.spec View File

@ -11,7 +11,7 @@ License: Apache 2.0
URL: https://tendermint.com/
Packager: Greg Szabo
Requires: tendermint >= 0.10.0
Requires(pre): /sbin/useradd
Requires(pre): useradd
%description
Ethermint enables ethereum to run as an ABCI application on tendermint and the COSMOS hub. This application allows you to get all the benefits of ethereum without having to run your own miners.


+ 1
- 1
build/spectemplates/gaia.spec View File

@ -11,7 +11,7 @@ License: Apache 2.0
URL: https://cosmos.network/
Packager: Greg Szabo
Requires: tendermint >= 0.10.0
Requires(pre): /sbin/useradd
Requires(pre): useradd
%description
Gaia description comes later.


+ 1
- 1
build/spectemplates/trackomatron.spec View File

@ -11,7 +11,7 @@ License: Apache 2.0
URL: https://tendermint.com/
Packager: Greg Szabo
Requires: tendermint >= 0.10.0
Requires(pre): /sbin/useradd
Requires(pre): useradd
%description
This software is intended to create a space to easily send invoices between and within institutions. Firstly, the commands of trackmatron are separated into two broad categories: submitting information to the blockchain (transactions), and retrieving information from the blockchain (query).


Loading…
Cancel
Save