2024-08-01 14:23:17 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Description: Cleanup apt cache files that add ~100MB to the .iso and aren't needed
|
|
|
|
|
|
|
|
rm -f /var/lib/apt/lists/*_Packages
|
|
|
|
rm -f /var/lib/apt/lists/*_Sources
|
|
|
|
rm -f /var/lib/apt/lists/*_Translation-*
|
2024-09-04 17:13:54 +02:00
|
|
|
apt clean -y
|