Skip to content
Snippets Groups Projects
install.yml 717 B
Newer Older
  • Learn to ignore specific revisions
  • jurgenhaas's avatar
    jurgenhaas committed
    ---
    # file: roles/netdata/tasks/install.yml
    
    - name: "Clone NetData"
      git:
        accept_hostkey: true
        repo: "https://github.com/firehol/netdata.git"
        dest: "/opt/netdata"
        force: yes
      register: netdata_clone
    
      when: netdata_local_archive is not defined
      notify:
        - "Restart NetData"
    
    - name: "Extract NetData Archive"
      unarchive:
        src: '/opt/{{ netdata_local_archive }}.zip'
        dest: '/opt'
        remote_src: yes
      register: netdata_clone
      when: netdata_local_archive is defined
    
    jurgenhaas's avatar
    jurgenhaas committed
      notify:
    
    jurgenhaas's avatar
    jurgenhaas committed
    
    - name: "Install and configure NetData"
      shell: ./netdata-installer.sh --dont-wait
      args:
    
        chdir: /opt/{{ netdata_local_archive|default('netdata') }}
    
    jurgenhaas's avatar
    jurgenhaas committed
      when: netdata_clone.changed