update and test script
This commit is contained in:
18
base-image-script/debian-test_pt2.sh
Normal file
18
base-image-script/debian-test_pt2.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
echo "[CHROOT] Configuring Debian system..."
|
||||
|
||||
echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/10-assume_yes
|
||||
|
||||
apt-get update
|
||||
apt-get upgrade
|
||||
|
||||
echo "[CHROOT] Removing unnecessary packages..."
|
||||
apt-get remove --purge --allow-remove-essential pinentry-curses whiptail kmod iptables iproute2 dmidecode || true
|
||||
|
||||
echo "[CHROOT] Cleaning up..."
|
||||
apt-get clean
|
||||
apt-get install -f
|
||||
find /var/lib/apt/lists/ -type f -delete
|
||||
|
||||
echo "[CHROOT] Done. Type 'exit' to return."
|
||||
exit
|
||||
Reference in New Issue
Block a user