Files
ChillcraftOS/export-image/01-set-sources/01-run.sh
2025-04-28 12:43:11 -07:00

11 lines
233 B
Bash
Executable File

#!/bin/bash -e
rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
find "${ROOTFS_DIR}/var/lib/apt/lists/" -type f -delete
on_chroot << EOF
apt-get update
apt-get -y dist-upgrade --auto-remove --purge
apt-get clean
apt-file update
EOF