我在 Circle CI“机器”执行器上运行 Ubuntu 20.04。今天我看到:
sudo apt-get install -y pkg1 pkg2
正在抛出这个警告:
W: --force-yes is deprecated, use one of the options starting with --allow instead
我没有使用“--force-yes”。这是从哪里来的?甚至
sudo apt-get update
抛出相同的警告。
我在 Circle CI“机器”执行器上运行 Ubuntu 20.04。今天我看到:
sudo apt-get install -y pkg1 pkg2
正在抛出这个警告:
W: --force-yes is deprecated, use one of the options starting with --allow instead
我没有使用“--force-yes”。这是从哪里来的?甚至
sudo apt-get update
抛出相同的警告。
apt-get
至少可以通过三种方式提供论据:apt-get --force-yes
;-o
CLI 参数与配置项一起使用,例如apt-get -o "APT::Get::force-yes=true"
;或者/etc/apt/apt.conf
.如果您没有在
apt-get
调用中看到指定的设置参数,您可能需要检查/etc/apt/apt.conf
、/etc/apt/apt.conf.d/*
或任何其他apt-get
配置文件来源。请注意,这
--force-yes
是危险的,您可能希望从apt-get
配置文件中删除此选项。