This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
Added binary upgrade option
pull/1943/head
Greg Szabo
8 years ago
parent
f38703a9f4
commit
b715d3caf7
3 changed files
with
12 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
ansible/roles/install/tasks/centos.yml
+1
-1
ansible/roles/install/tasks/debian.yml
+10
-0
ansible/upgrade.yml
+ 1
- 1
ansible/roles/install/tasks/centos.yml
View File
@ -30,5 +30,5 @@
-
name
:
Install package on CentOS/RedHat
when
:
ansible_os_family == "RedHat"
yum
:
"pkg={{service}} update_cache=yes"
yum
:
"pkg={{service}} update_cache=yes
state=latest
"
+ 1
- 1
ansible/roles/install/tasks/debian.yml
View File
@ -18,5 +18,5 @@
-
name
:
Install package on Debian/Ubuntu
when
:
ansible_os_family == "Debian"
apt
:
"pkg={{service}}"
apt
:
"pkg={{service}}
update_cache=yes state=latest
"
+ 10
- 0
ansible/upgrade.yml
View File
@ -0,0 +1,10 @@
---
#variable "service" is required
-
hosts
:
"{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
roles:
-
stop
-
install
-
start
Write
Preview
Loading…
Cancel
Save