gpt4 book ai didi

bash - 如何在 sudoers.d 文件中添加 DEBIAN_FRONTEND=noninteractive?

转载 作者:行者123 更新时间:2023-12-04 18:59:27 25 4
gpt4 key购买 nike

我正在为我的项目目的之一自动化 dpkg-sig 安装。现在我想以非交互方式安装它。
我在/etc/sudoers.d/内的文件中添加了以下内容

Cmnd_Alias DPKGSIG_INSTALL = /usr/bin/apt install -y dpkg-sig, \
/bin/apt install -y dpkg-sig
abc ALL=(root) NOPASSWD: DPKGSIG_INSTALL
Defaults:abc !requiretty
我正在尝试使用我的 golang 代码安装 dpkg-sig,如下所示:
installDpkgSig := "/usr/bin/sudo DEBIAN_FRONTEND=noninteractive apt install -o Dpkg::Options::=--force-confold -y dpkg-sig"
executor.cmd = *exec.Command("bash", "-c", installDpkgSig)
它无法安装它。收到以下错误:
sudo: sorry, you are not allowed to set the following environment variables: DEBIAN_FRONTEND
但是当我从安装命令中删除 DEBIAN_FRONTEND=noninteractive 部分时,它工作正常。
怎样才能运行安装非交互方式?

最佳答案

无需涉及 Bash(它甚至可能会带来更多错误);只需为命令设置环境变量:

cmd := exec.Command("sudo", "apt-get", "install", "-o", "Dpkg::Options::=--force-confold", "-y", "dpkg-sig")
cmd.Env = append(os.Environ(), "DEBIAN_FRONTEND=noninteractive")
err := cmd.Run()

(另外,使用 apt-get ,而不是 apt ,用于非交互式任务。)

关于bash - 如何在 sudoers.d 文件中添加 DEBIAN_FRONTEND=noninteractive?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66668475/

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