live-iso-hyprland/hooks/999-cleanup-apt-cache.chroot

9 lines
281 B
Plaintext
Raw Normal View History

2024-10-27 17:17:07 +01: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-*
systemctl unmask fwupd || true
systemctl unmask nmdb || true
apt clean -y