[Cleanup] newrelic, don't compare to empty string

This commit is contained in:
Mathieu Trossevin 2020-06-19 13:20:19 +02:00
parent 97d3d29210
commit c3caa31bf2
Signed by: mtrossevin
GPG key ID: 81987323AE7F3E99
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@
question: "newrelic-php5/application-name"
value: "{{ newrelic_appname }}"
vtype: string
when: newrelic_appname != ""
when: newrelic_appname
- name: Pre-seed package configuration with license
debconf:
@ -14,7 +14,7 @@
question: "newrelic-php5/license-key"
value: "{{ newrelic_license }}"
vtype: "string"
when: newrelic_license != ""
when: newrelic_license
- name: list newrelic config files
shell: "find /etc/php* -type f -name newrelic.ini"

View file

@ -9,5 +9,5 @@
dest: /etc/newrelic/nrsysmond.cfg
regexp: "license_key=REPLACE_WITH_REAL_KEY"
replace: "license_key={{ newrelic_license }}"
when: newrelic_license != ""
when: newrelic_license
notify: restart newrelic-sysmond