我想在远程 ESXi 上使用 Ansible 执行命令,但似乎缺少模块 grp。
# ansible esxi -a "date"
esxi | FAILED >> {
"failed": true,
"msg": "Traceback (most recent call last):\r\n File \"//.ansible/tmp/ansible-tmp-1409770903.88-199403044644009/command\", line 229, in <module>\r\n import grp\r\nImportError: No module named grp\r\n",
"parsed": false
}
我尝试将这些模块从另一台主机复制到 ESXi python lib 文件夹,但也没有成功。有没有办法让它工作,还是我应该尝试为 ESXi 编译较新版本的 Python?
答案1
我缺少 -m raw 选项,因为 ESXi 上没有安装 python-simplejson。
# ansible esxi -m raw -a "date"
esx1 | success | rc=0 >>
Sun Aug 24 22:26:49 UTC 2014