Disable package caching in apt operations

这个提交包含在:
unman 2020-01-15 18:42:00 +00:00
父节点 2f2067ac0b
当前提交 af20dbc3db
找不到此签名对应的密钥
GPG 密钥 ID: FDD1B8244731B36C
共有 3 个文件被更改,包括 6 次插入0 次删除

查看文件

@ -1,5 +1,6 @@
etc/apt/apt.conf.d/00notify-hook
etc/apt/apt.conf.d/70no-unattended
etc/apt/apt.conf.d/10no-cache
etc/apt/sources.list.d/qubes-r4.list
etc/apt/trusted.gpg.d/qubes-archive-keyring.gpg
etc/dconf/db/local.d/dpi

查看文件

@ -30,6 +30,8 @@ install-apt:
$(DESTDIR)$(APTCONFDIR)/apt.conf.d/00notify-hook
install -D -m 0644 apt-conf-70no-unattended \
$(DESTDIR)$(APTCONFDIR)/apt.conf.d/70no-unattended
install -D -m 0644 apt-conf-10no-cache \
$(DESTDIR)$(APTCONFDIR)/apt.conf.d/10no-cache
install-dnf: install-rpm
install -D -m 0644 dnf-qubes-hooks.py \

查看文件

@ -0,0 +1,3 @@
## Disable caching of packages in all apt operations
APT::Keep-Downloaded-Packages "0";