Skip to content

Commit 4382f1d

Browse files
authored
Merge pull request Nosmoht#8 from sizgiyaev/master
2 parents 96ef700 + 557b312 commit 4382f1d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

powerdns_record.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

44
DOCUMENTATION = '''
@@ -240,7 +240,7 @@ def main():
240240
pdns_port=dict(type='int', default=8081),
241241
pdns_prot=dict(type='str', default='http', choices=['http', 'https']),
242242
pdns_api_key=dict(type='str', required=False),
243-
strict_ssl_checking=dict(type='boolean', default=True),
243+
strict_ssl_checking=dict(type='bool', default=True),
244244
),
245245
supports_check_mode=True,
246246
)

powerdns_zone.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

44
DOCUMENTATION = '''
@@ -214,7 +214,7 @@ def main():
214214
pdns_port=dict(type='int', default=8081),
215215
pdns_prot=dict(type='str', default='http', choices=['http', 'https']),
216216
pdns_api_key=dict(type='str', required=False),
217-
strict_ssl_checking=dict(type='boolean', default=True),
217+
strict_ssl_checking=dict(type='bool', default=True),
218218
),
219219
supports_check_mode=True,
220220
)

0 commit comments

Comments
 (0)