gpt4 book ai didi

ansible - 通过 ansible 安装 deb 包

转载 作者:行者123 更新时间:2023-12-05 02:29:58 30 4
gpt4 key购买 nike

我正在尝试使用 ansible 在远程服务器上安装 deb 包,使用以下结构

- name: Install deb
delegate_to: app1
apt:
deb: https://example.com/deb/package.deb

- name: Install deb
delegate_to: app1
apt:
deb: /path/to/deb

剧本有效,说一切正常,但实际上没有安装包,如果你连接到远程服务器并手动运行 apt install/path/to/deb,那么包已安装。我尝试使用ansible将deb复制到服务器并通过从Internet资源下载包来安装它,结果总是一样

最佳答案

您必须使用 privilege escalation Ansible 的 becomebecome_method: sudo 方法。安装包需要 sudo 权限。

- name: Install deb
delegate_to: app1
apt:
deb: /path/to/deb
become: yes

关于ansible - 通过 ansible 安装 deb 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71995796/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com