如何摆脱“[警告]:考虑使用dnf模块而不是运行dnf”?


2

我的一些ansible playbooks开始安装 python2-dnf 所需的包装 DNF ansible模块运行。

tasks:
- name: Install required dnf python binding
  shell: dnf install -y python2-dnf
  changed_when: False

直接打电话 dnf 贝壳 模块导致以下警告

[WARNING]: Consider using dnf module rather than running dnf

如何避免这种警告或建议确保包装的方法是什么 python2-dnf 安装,因此模块 DNF 可以用吗?

Answers:


1

通过添加a可以使Shell警告静音 warn=no 你的shell命令字符串如下:

tasks: - name: Install required dnf python binding shell: dnf install -y python2-dnf warn=no changed_when: False

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.