最近,我已经开始使用Ansible了,我需要一些关于剧本的帮助。
我正在尝试将设备详细信息作为参数,然后为其链接一个星号,以便运行shell命令。例如,如果设备是/etc/sda
,shell命令为ls -l /dev/sda*
。
- name: Get Hitachi Devices device details
shell: lsscsi | grep HITACHI | awk '{print $6}'
register: hitachiDevice
- name: Check if the volume is partitioned
shell: ls -l "{{ hitachiDevice.rc }}"* | wc -l
failed_when: hitachiDevice.rc != 1
以下是运行脚本后出现的错误:
{
"changed": true,
"cmd": "ls -l \"0\"* | wc -l",
"delta": "0:00:00.027338",
"end": "2016-08-10 14:15:12.200415",
"failed": true,
"failed_when_result": true,
"rc": 0,
"start": "2016-08-10 14:15:12.173077",
"stderr": "ls: cannot access 0*: No such file or directory",
"stdout": "0",
"stdout_lines": [
"0"
],
"warnings": []
}
任何人都知道这是什么问题,我该如何解决?
答案 0 :(得分:2)
hitachiDevice.rc
包含上一个命令的结果代码
我敢打赌,如果0
成功,它总是grep
所以你的下一个命令几乎总是ls -l 0* | wc -l
,它会给你错误
ls:无法访问0 *:没有这样的文件或目录
我认为你需要像hitachiDevice.stdout
这样的东西,具体取决于你想要达到的目标。