Skip to content

Commit 0777b72

Browse files
committed
Change all boolean attrs to true of false
1 parent 43f5bca commit 0777b72

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
zabbix_api_use: True
2+
zabbix_api_use: true

molecule/default/molecule.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ dependency:
44
options:
55
role-file: requirements.yml
66
roles-path: .imported_roles
7-
force: False
7+
force: false
88
driver:
99
name: docker
1010
lint:
1111
name: yamllint
1212
options:
1313
config-file: molecule/resources/yamllint.conf
14-
s: False
14+
s: false
1515
platforms:
1616
- name: common
1717
image: ubuntu:16.04
1818
- name: zabbix-server
1919
groups:
2020
- zabbix_server
2121
image: ubuntu:16.04
22-
privileged: True
22+
privileged: true
2323
volume_mounts:
2424
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
2525
command: /sbin/init

molecule/parallels/molecule.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependency:
44
options:
55
role-file: requirements.yml
66
roles-path: .imported_roles
7-
force: False
7+
force: false
88
driver:
99
name: vagrant
1010
provider:
@@ -13,7 +13,7 @@ lint:
1313
name: yamllint
1414
options:
1515
config-file: molecule/resources/yamllint.conf
16-
s: False
16+
s: false
1717
platforms:
1818
- name: common
1919
box: parallels/ubuntu-16.04

playbooks/common.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: Install default packages
33
hosts: all
4-
become: yes
4+
become: true
55
roles:
66
- default_packages

playbooks/zabbix.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
- name: Configure zabbix server
33
hosts: zabbix_server
4-
become: yes
4+
become: true
55
roles:
66
- { role: ANXS.postgresql }
77
- { role: dj-wasabi.zabbix-server }
@@ -10,15 +10,15 @@
1010

1111
- name: Configure zabbix agent
1212
hosts: all
13-
become: yes
13+
become: true
1414
roles:
1515
- { role: dj-wasabi.zabbix-agent }
1616

1717
- name: Create hosts, groups and templates on zabbix server
1818
hosts: all
19-
become: yes
19+
become: true
2020
roles:
21-
- { role: dj-wasabi.zabbix-agent, become: no, tags: ['api'] }
21+
- { role: dj-wasabi.zabbix-agent, become: false, tags: ['api'] }
2222
serial: 1
2323
vars_files:
2424
- "{{inventory_dir}}/play_vars/zabbix-api.yml"

roles/default_packages/tasks/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
apt:
44
name: gnupg2
55
state: present
6-
update_cache: yes
6+
update_cache: true
77
cache_valid_time: 86400

0 commit comments

Comments
 (0)