File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,8 @@ def main():
81
81
),
82
82
deploy_osp = dict (
83
83
required = False ,
84
- default = False
84
+ default = False ,
85
+ type = 'bool'
85
86
)
86
87
),
87
88
supports_check_mode = False
Original file line number Diff line number Diff line change 20
20
- name : Include OSP vars
21
21
include_vars : vars/maas-osp.yml
22
22
when :
23
- - deploy_osp | default(False)
23
+ - deploy_osp | default(False)
24
24
25
25
- include : " common-tasks/maas_excluded_regex.yml"
26
26
- name : Set the current group
56
56
- deploy_osp | default(False)
57
57
register : osd_container_name
58
58
59
- - name : Set container name for osp template
59
+ - name : Set container name for osp template
60
60
set_fact :
61
61
container_name : " {{ osd_container_name.stdout | trim }}"
62
62
when :
67
67
ceph_osd_host_facts :
68
68
hostname : " {{ ansible_hostname }}"
69
69
container_name : " {{ container_name | default(inventory_hostname) }}"
70
- deploy_osp : " {{ deploy_osp | default(False) }}"
70
+ deploy_osp : " {{ deploy_osp | default(False) }}"
71
71
tags :
72
72
- always
73
73
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Add boolean type for deploy_osp in custom OSD fact gathering module.
You can’t perform that action at this time.
0 commit comments