Storing package list compressed - save some space (50-70Mb), enlarging automated apt-get update and purge intervals to minimize fs interacions further

This commit is contained in:
Igor Pecovnik 2018-03-01 20:37:47 +01:00
parent d40ee81f9d
commit fcf8d5cad7
3 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1 @@
Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";

View file

@ -2,7 +2,7 @@
APT::Periodic::Enable "1";
// Do "apt-get update" automatically every n-days (0=disable)
APT::Periodic::Update-Package-Lists "3";
APT::Periodic::Update-Package-Lists "7";
// Do "apt-get upgrade --download-only" every n-days (0=disable)
APT::Periodic::Download-Upgradeable-Packages "0";
@ -14,4 +14,4 @@ APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::Unattended-Upgrade "1";
// Do "apt-get autoclean" every n-days (0=disable)
APT::Periodic::AutocleanInterval "7";
APT::Periodic::AutocleanInterval "21";

View file

@ -0,0 +1 @@
Acquire::Languages "none";