我正在尝试在Ansible 2.3中编写一个自定义模块以在我的剧本中使用。它的细节已经抽象出来,可以在下面运行一个最小的date
命令,但是我正在开发一个非常复杂的示例。
[dev@foobar Gist]$ tree ansible_version_err/
ansible_version_err/
├── dev_command.yml
└── library
└── dev_command.py
库文件的内容正在使用ansible.module
包来实现自定义命令。
#!/usr/bin/python
from ansible.module_utils.basic import *
from subprocess import Popen, PIPE
import time
if __name__ == '__main__':
module = AnsibleModule(
argument_spec={
'command': { 'type':'str', 'required': True },
'print_elapsed': { 'type':bool, 'required': False },
'print_time': { 'type':bool, 'required': False } } )
stdout = None
stderr = None
rc = None
try:
time_start = time.time()
proc = Popen( module.params['command'], shell = True)
stdout, stderr = proc.communicate()
time_end = time.time()
rc = proc.returncode
if rc != 0:
raise Exception("error while obtaining date")
time_elapsed = time_end - time_start
if 'print_elapsed' in module.params and module.params['print_elapsed']:
stdout = stdout + "\nelapsed time: " + str(time_elapsed)
if 'print_time' in module.params and module.params['print_time']:
stdout = stderr + "\ntime: " + time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime(time_start))
module.exit_json( changed = False, stdout = stdout, stderr = stderr, rc = rc, time_elapsed = time_elapsed )
except Exception:
pass
,使用该.yml
的{{1}}文件称为
dev_command
我只是用---
- hosts: localhost
gather_facts: no
tasks:
- name: testing a custom command
vars:
print_stdout: True
dev_command: command="{{cmd}}" print_elapsed=True print_time=True
调用cmd
,它将继续运行date命令。
date
虽然我希望在Ansible 2.3上能够完成这项工作,但它却给我带来了一个错误
ansible-playbook dev_command.yml -vvv -e "cmd=date"
在v2.6中看不到此错误。为什么会这样呢?这是一个已知的Ansible功能错误,只能通过移至较新版本来解决。版本详细信息
fatal: [localhost]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"command": "date",
"print_elapsed": "True",
"print_time": "True"
}
},
"msg": "implementation error: unknown type <type 'bool'> requested for print_time"
}
答案 0 :(得分:1)
Q:“在Ansible 2.3上,它抛出了一个错误...在v2.6中看不到此错误。为什么会发生?这是一个只能通过以下方式解决的已知Ansible功能错误:迁移到新版本?”
A:是的。有必要移至维护版本。即使这是一个已知问题,也不会再解决。 Ansible Release cycle说:
“ Ansible具有逐步升级的维护结构,可扩展到三个主要版本...我们强烈建议您尽快升级...”
当前最新的Ansible版本是2.9。目前最新维护的版本是2.7。
FWIW。命令
$ grep -r type /scratch/ansible/lib/ansible/modules/ | grep bool | grep defaul
显示所有模块使用引号声明布尔类型
type='bool'
或
'type': 'bool'