如何在ansible中处理未经验证的apt安装

时间:2015-02-24 19:38:52

标签: ansible apt-get apt ansible-playbook

从我们自己的仓库安装apt软件包时,我在CLI上获得以下内容:

Install these packages without verification? [y/N]

问题是,如何使用ansible成功安装这些软件包?

即使使用force选项,ansible也无法安装包。

我正在使用的命令是:

- apt: name=coupons-graphite dpkg_options='force' state=present

1 个答案:

答案 0 :(得分:6)

根据documentation for the apt module,在这种情况下你应该使用force=yes

- apt: name=coupons-graphite
       state=present
       force=yes