My-distro-DI-configs/my-distro-devuan-32-pae/deb-installer/scripts/07update-system

19 lines
590 B
Plaintext
Raw Normal View History

#!/bin/sh -e
################################################################################
2023-11-16 12:32:50 -01:00
# Title: Update system
# Description: Script to update the system after install
# Author: manuel rosa <manuelsilvarosa@gmail.com>
# Date: Outubro 29, 2023
# License: GPL-3.0-or-later
################################################################################
# This script updates the system after Debian installation.
# Update the system
chroot /target apt update
chroot /target apt upgrade -y
# Clean up unnecessary packages
chroot /target apt autoremove -y