From c47362e875160592ea33222cadea83e12b2867dc Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Tue, 11 Jun 2019 09:03:09 +0200 Subject: [PATCH] ansible-playbooks/general#85 Linting --- tasks/apache.yml | 2 +- tasks/configure.yml | 10 +++++----- tasks/install.yml | 8 ++++---- tasks/mysql.yml | 2 +- tasks/silent.yml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tasks/apache.yml b/tasks/apache.yml index 71f10d0..18da744 100644 --- a/tasks/apache.yml +++ b/tasks/apache.yml @@ -38,4 +38,4 @@ src: health/web_log.conf dest: /etc/netdata/health.d/web_log.conf notify: - - "Restart NetData" + - Restart NetData diff --git a/tasks/configure.yml b/tasks/configure.yml index 6cc590b..fe52933 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -20,7 +20,7 @@ - option: registry to announce value: http://{{ netdata_registry|default("pmon1") }}:19999 notify: - - "Restart NetData" + - Restart NetData - name: Configure NetData template: @@ -34,7 +34,7 @@ - health_alarm_notify.conf - python.d.conf notify: - - "Restart NetData" + - Restart NetData - name: Configure Python Plugins template: @@ -47,7 +47,7 @@ with_items: - httpcheck.conf notify: - - "Restart NetData" + - Restart NetData - name: Get a list of all health config files shell: ls /usr/lib/netdata/conf.d/health.d/*.conf -1 @@ -60,7 +60,7 @@ regexp: no-clear-notification with_items: '{{ health_list.stdout_lines }}' notify: - - "Restart NetData" + - Restart NetData - name: Patch Startup Script lineinfile: @@ -85,4 +85,4 @@ value: 1000 when: ksm.stat.exists notify: - - "Restart NetData" + - Restart NetData diff --git a/tasks/install.yml b/tasks/install.yml index 7752147..3fc4aa3 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -11,7 +11,7 @@ register: netdata_clone when: netdata_local_archive is not defined notify: - - "Restart NetData" + - Restart NetData - name: Extract NetData Archive unarchive: @@ -21,7 +21,7 @@ register: netdata_extract when: netdata_local_archive is defined notify: - - "Restart NetData" + - Restart NetData - name: Install and configure NetData shell: ./netdata-installer.sh --dont-wait @@ -36,7 +36,7 @@ with_items: - fluentd_buffer notify: - - "Restart NetData" + - Restart NetData - name: Install Custom Alerts template: @@ -46,4 +46,4 @@ - fluentd_buffer - httpcheck notify: - - "Restart NetData" + - Restart NetData diff --git a/tasks/mysql.yml b/tasks/mysql.yml index 6b5acb5..f084cbd 100644 --- a/tasks/mysql.yml +++ b/tasks/mysql.yml @@ -7,4 +7,4 @@ regexp: #[\s]*pass[\s]*:[\s]*'''' replace: pass : ''{{ mysql_root_password|default("root") }}'' notify: - - "Restart NetData" + - Restart NetData diff --git a/tasks/silent.yml b/tasks/silent.yml index 82b47fc..d637fa3 100644 --- a/tasks/silent.yml +++ b/tasks/silent.yml @@ -9,4 +9,4 @@ backup: yes with_items: '{{ netdata_silent_alerts }}' notify: - - "Restart NetData" + - Restart NetData -- GitLab