From 8ec36d7e146c49c167a0e8657c124c9f40080211 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 6 Feb 2023 08:26:57 -0700 Subject: [PATCH] fix --- debian.sh | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/debian.sh b/debian.sh index e75f16b..56d1400 100755 --- a/debian.sh +++ b/debian.sh @@ -189,7 +189,7 @@ desktop(){ systemctl disable --now rpbind systemctl disable --now bluetooth apt -y purge apparmor - apt remove unattended-upgrades chromium firefox-esr epiphany-browser epiphany-browser-data -y + apt remove unattended-upgrades chromium chromium-common chromium-sandbox firefox-esr epiphany-browser epiphany-browser-data -y apt autoremove -y } @@ -402,9 +402,9 @@ services() { initialize-disk() { parted /dev/$HARD_DISK mklabel gpt parted /dev/$HARD_DISK mkpart primary fat32 1MiB 200MiB - parted /dev/$HARD_DISK mkpart primary ext3 200MiB 500MiB + parted /dev/$HARD_DISK mkpart primary ext3 200MiB 700MiB parted /dev/$HARD_DISK set 1 esp on - parted /dev/$HARD_DISK mkpart P2 ext3 500MiB 100% + parted /dev/$HARD_DISK mkpart P2 ext3 700MiB 100% printf "$DISK_PASSWORD\n$DISK_PASSWORD" | cryptsetup luksFormat ${BTRFS} printf "$DISK_PASSWORD" | cryptsetup open ${BTRFS} root echo @@ -463,10 +463,3 @@ elif [ "$1" = "btrfs-tweaks" ]; then btrfs-tweaks elif [ "$1" = "restore" ]; then net-restore "$2" "$3" "$4" -elif [ "$1" = "remove-snapshot" ]; then - remove-snapshots -elif [ "$1" = "help" ]; then - show-help -else - show-help -fi