如何处理ansible中未经验证的apt安装
how to deal with unverified apt install in ansible
从我们自己的仓库安装 apt 包时,我在 CLI 上得到以下信息:
Install these packages without verification? [y/N]
问题是,如何使用ansible成功安装这些包?
即使使用强制选项,ansible 也无法安装包。
我使用的命令是:
- apt: name=coupons-graphite dpkg_options='force' state=present
根据 documentation for the apt module 在这种情况下您应该使用 force=yes
:
- apt: name=coupons-graphite
state=present
force=yes
从我们自己的仓库安装 apt 包时,我在 CLI 上得到以下信息:
Install these packages without verification? [y/N]
问题是,如何使用ansible成功安装这些包?
即使使用强制选项,ansible 也无法安装包。
我使用的命令是:
- apt: name=coupons-graphite dpkg_options='force' state=present
根据 documentation for the apt module 在这种情况下您应该使用 force=yes
:
- apt: name=coupons-graphite
state=present
force=yes