diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000000000000000000000000000000000000..824df9956802ba54b938b03b67f54e2efffcefc0 --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1 @@ +netdata_force_reset: false diff --git a/handlers/main.yml b/handlers/main.yml index 7b79d5b1fc8b161774640a097a4bbfadb81f2a66..79f6753a54b4aba1bdc880fd8fbcf532df8c8a51 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -4,7 +4,12 @@ - name: "Include NetData to Boot-List" command: update-rc.d netdata defaults -- name: "Re-start NetData" +- name: "Restart NetData" service: name='netdata' state='restarted' + +- name: "Restart Apache" + service: + name='apache2' + state='restarted' diff --git a/tasks/install.yml b/tasks/install.yml index 932235636b287dfd36619191870cca59dd44dadd..d6b9f30dc261d795a7b5ded0a829ba6a46ef9bb0 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -9,7 +9,7 @@ force: yes register: netdata_clone notify: - - "Re-start NetData" + - "Restart NetData" - name: "Install and configure NetData" shell: ./netdata-installer.sh --dont-wait diff --git a/tasks/main.yml b/tasks/main.yml index 9dc3874c20243a78dd44fe9743d78de0bbc9c7c8..75f6ee6480489dd04c99fff409e8e7f9e4295dc8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -27,6 +27,17 @@ #FireQOS available from 15.04 #- firehol + - name: "Remove existing components" + file: + path: '{{ item }}' + state: 'absent' + with_items: + - '/opt/netdata' + - '/etc/netdata' + - '/etc/init.d/netdata' + - '/etc/logrotate.d/netdata' + when: netdata_force_reset + - name: "Ensure Directory" file: path='/etc/netdata/python.d' @@ -34,24 +45,11 @@ - include: install.yml - - name: "Install startup script" - template: - src=etc_init_d_netdata - dest=/etc/init.d/netdata - owner=root - group=root - mode=755 - notify: - - "Include NetData to Boot-List" - - "Re-start NetData" - - - name: "Install logrotate script" - template: - src=etc_logrotate_d_netdata - dest=/etc/logrotate.d/netdata - owner=root - group=root - mode=644 + - name: "Add User to Admins" + user: + name: 'netdata' + groups: 'adm' + append: yes - name: "Configure Registry" ini_file: @@ -66,7 +64,7 @@ - option: 'registry to announce' value: 'http://{{ netdata_registry|default("pmon1") }}:19999' notify: - - "Re-start NetData" + - "Restart NetData" - name: "Configure NetData" template: @@ -77,22 +75,47 @@ mode=644 backup=yes with_items: - - 'python.d.conf' - 'health_alarm_notify.conf' notify: - - "Re-start NetData" + - "Restart NetData" - - name: "Configure Plugins" - template: - src='{{ item }}.conf' - dest='/etc/netdata/python.d/{{ item }}.conf' - owner='root' - group='root' - mode=644 - with_items: - - 'mysql' + - name: "Patch Startup Script" + lineinfile: + dest: '/etc/init.d/netdata' + regexp: 'killproc -p \$\{PIDFILE\} \$DAEMON_PATH/\$DAEMON' + line: ' killproc -p ${PIDFILE} $DAEMON_PATH/$DAEMON && sleep 1' + when: ansible_lsb.major_release == '12' + + - block: + + - name: "Enable Apache Status Module" + apache2_module: + name=status + state=present + notify: "Restart Apache" + + - name: "Apache Status Site" + template: + src=apache.conf + dest=/etc/apache2/sites-available/status{{ apache_conf_ext|default('.conf') }} + owner=root + group=root + mode=0644 + notify: "Restart Apache" + + - name: "Enable Apache Status Site" + command: a2ensite status creates=/etc/apache2/sites-enabled/status{{ apache_conf_ext|default('.conf') }} + notify: "Restart Apache" + + when: groups['webserver'] is defined and inventory_hostname in groups['webserver'] + + - name: "Configure Plugin: MySQL" + replace: + dest: '/etc/netdata/python.d/mysql.conf' + regexp: '#[\s]*pass[\s]*:[\s]*''''' + replace: 'pass : ''{{ mysql_root_password|default("root") }}''' notify: - - "Re-start NetData" + - "Restart NetData" - name: "Check if KSM is available" stat: path='/sys/kernel/mm/ksm' @@ -109,6 +132,6 @@ value: '1000' when: ksm.stat.exists notify: - - "Re-start NetData" + - "Restart NetData" when: '"netdata" not in excluded_roles' diff --git a/templates/apache.conf b/templates/apache.conf new file mode 100644 index 0000000000000000000000000000000000000000..374eadc75c6b28e38becdf0ff186379cd5abbe80 --- /dev/null +++ b/templates/apache.conf @@ -0,0 +1,20 @@ +<VirtualHost *:80> + Include /etc/apache2/{{ apache_conf_dir|default('conf-available') }}/global-redirect.conf + + ServerName {{ inventory_hostname }} + ServerAlias localhost + <Location /server-status> + SetHandler server-status + Order Deny,Allow + Deny from all + Allow from 127.0.0.1{% for address in ansible_all_ipv4_addresses %} {{ address }}{% endfor %} + + </Location> + + ErrorLog ${APACHE_LOG_DIR}/error.log + LogLevel warn + LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy + SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded + CustomLog ${APACHE_LOG_DIR}/access.log combined env=!forwarded + CustomLog ${APACHE_LOG_DIR}/access.log proxy env=forwarded +</VirtualHost>