Skip to content

Commit cdd5282

Browse files
committed
make lint happy
fix #595 for 22.04
1 parent 85f20a1 commit cdd5282

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

resources/playbook/roles/bibigrid/tasks/001-apt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
- name: Add zabbix repositories
5050
apt:
51-
deb: "https://repo.zabbix.com/zabbix/7.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_latest_7.0+{{ ansible_distribution | lower }}{{ ansible_distribution_version }}_all.deb"
51+
deb: "https://repo.zabbix.com/zabbix/7.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_latest_7.0+{{ ansible_distribution | lower }}{{ ansible_distribution_version }}_all.deb" # noqa: line-length
5252
state: present
5353
force: true
5454
tags:

resources/playbook/roles/bibigrid/tasks/011-zabbix-agent.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
ansible_httpapi_port: 80
6868
ansible_http_use_ssl: false
6969
ansible_user: Admin
70-
ansible_httpapi_pass: "{{ zabbix_conf.admin_password }}"
70+
ansible_httpapi_pass: "{{ zabbix_conf.admin_password }}"
7171
zabbix_host:
7272
host_name: "{{ ansible_hostname }}"
7373
visible_name: "{{ ansible_hostname }}"
@@ -117,4 +117,5 @@
117117
useip: 1 # connect using host IP address
118118
port: 10050
119119
become: false
120-
when: "'master' in group_names"
120+
when: "'master' in group_names"
121+

0 commit comments

Comments
 (0)