mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-05 12:41:14 +00:00
16 lines
No EOL
367 B
YAML
16 lines
No EOL
367 B
YAML
---
|
|
- name: Run Bash Script on Host
|
|
hosts: "{{ network }}"
|
|
become: true #sudo/root
|
|
|
|
tasks:
|
|
- name: Update RPC image version
|
|
shell: |
|
|
export RPC_IMAGE={{ rpc_image }}
|
|
cd {{ deploy_path }}
|
|
git pull
|
|
./docker-down.sh
|
|
./docker-up-hash.sh
|
|
docker ps
|
|
register: output
|
|
- debug: var=output.stdout_lines |