Ansible与Ubuntu 18.04兼容吗?

时间:2019-01-29 08:24:49

标签: ansible

我试图在Ubuntu 18.04虚拟机上运行小型剧本,并在收集事实时面对问题。

PLAY [all] *************************************************************************************************************************************************************************************************

TASK [Gathering Facts] *************************************************************************************************************************************************************************************
fatal: [localhost]: FAILED! => {"changed": false, "cmd": "/usr/bin/lsb_release -a", "msg": "[Errno 2] No such file or directory: '/usr/bin/lsb_release': '/usr/bin/lsb_release'", "rc": 2}
    to retry, use: --limit @/Users/srini/VirtualEnv/image-mgmt/image-mgmtv3/linux_prepup_main.retry

PLAY RECAP *************************************************************************************************************************************************************************************************
localhost : ok=0    changed=0    unreachable=0    failed=1   

2 个答案:

答案 0 :(得分:1)

是的。 Ansible与Ubuntu 18.04兼容。

出现此错误是因为您在本地主机而不是目标服务器上运行剧本。

答案 1 :(得分:0)

看起来ubuntu中未安装lsb-release 尝试安装

sudo apt-get update
sudo apt-get install lsb-release