]> arthur.barton.de Git - netdata.git/commitdiff
removed ansible workbook: https://github.com/firehol/netdata/issues/651#issuecomment...
authorCosta Tsaousis <costa@tsaousis.gr>
Mon, 17 Oct 2016 11:12:25 +0000 (14:12 +0300)
committerCosta Tsaousis <costa@tsaousis.gr>
Mon, 17 Oct 2016 11:12:25 +0000 (14:12 +0300)
Makefile.am
ansible/netdata.yml [deleted file]

index ea1ac256bbbbb8fb5e3cff33868c43ef8d848aec..572c5dbbf861780e1a8226226f535ccc32fc89b2 100644 (file)
@@ -47,7 +47,6 @@ dist_noinst_DATA= \
 # until integrated within build
 # should be proper init.d/openrc/systemd usable
 dist_noinst_SCRIPTS= \
-       ansible/netdata.yml \
        coverity-scan.sh \
        docker-build.sh \
        netdata-installer.sh \
diff --git a/ansible/netdata.yml b/ansible/netdata.yml
deleted file mode 100644 (file)
index 4c7e736..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
----
-- name: "Install pre-requisites"    
-  apt:
-    name: "{{ item }}"
-    state: present
-  with_items: 
-    - autoconf
-    - autoconf-archive
-    - autogen
-    - automake
-    - gcc
-    - git
-    - libmnl-dev
-    - make
-    - pkg-config
-    - uuid-dev
-    - zlib1g-dev
-  when: ansible_os_family == "Debian"
-
-- name: "Install pre-requisites"    
-  yum:
-    name: "{{ item }}"
-    state: present
-  with_items: 
-    - autoconf
-    - autoconf-archive
-    - autogen
-    - automake
-    - curl
-    - gcc
-    - git
-    - jq
-    - libmnl-devel
-    - libuuid-devel
-    - make
-    - pkgconfig
-    - zlib-devel
-  when: ansible_os_family == "RedHat"
-
-- name: "Clone repo"
-  git:
-    clone: yes
-    repo: https://github.com/firehol/netdata.git
-    dest: /tmp/netdata
-
-- name: "Installation"
-  shell: cd /tmp/netdata/ && ./netdata-installer.sh --dont-wait --libs-are-really-here
-
-- name: "Clean /tmp"
-  file:
-    path: /tmp/netdata
-    state: absent
-
-- name: "KillAll"
-  shell: killall netdata
-
-- name: "Daemon config"
-  systemd:
-    daemon_reload: yes
-    name: netdata
-    enabled: yes
-    state: started