Post
Topic
Board Announcements (Altcoins)
Re: Nyzo - Proof of Diversity | Fairly Distributed | Original Code
by
ThebigTHICC
on 02/07/2019, 09:47:22 UTC
Might have posted this before but for those running lots of Verifiers, Ansible is simple and powerful for large scale linux management
Verifier update:
Quote
- hosts: nyzo-hosts
  become: yes
  gather_facts: no
  tasks:

    - name: GIT reset
      command: git reset
      args:
        chdir: /home/ubuntu/nyzoVerifier
    - name: Pull Master
      command: git pull origin master
      args:
        chdir: /home/ubuntu/nyzoVerifier
    - name: Gradlew Build
      command: ./gradlew build
      args:
        chdir: /home/ubuntu/nyzoVerifier
    - name: Reload supervisor
      command: supervisorctl reload
Applies new updates to all my verifs in like a few minutes
Happy to help if people have questions