This commit is contained in:
Marc Beninca 2024-11-11 13:26:01 +01:00
parent 91b0862539
commit 48e29b9e60
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -63,24 +63,22 @@ ovh_rescue_install() {
apt_clean_cache apt_clean_cache
# install packages # install packages
apt-get install --assume-yes \ apt-get install --assume-yes \
"file" "htop" "iotop" "lsof" \ "file" "htop" "iotop" "lsof" "rsync" \
\ \
"parted" "mdadm" "lvm2" \ "parted" "mdadm" "cryptsetup-bin" "lvm2" \
"lshw" \ "lshw" \
"micro" \ "micro" \
"exa" "ncdu" "nnn" "ranger" "tree" \ "exa" "ncdu" "nnn" "ranger" "tree" \
"squashfs-tools" \ "squashfs-tools" \
"uuid-runtime" "git"
# clean cache # clean cache
apt_clean_cache apt_clean_cache
# install backports # install backports
apt-get install --assume-yes \ apt-get install --assume-yes \
--target-release "${release}-backports" \ --target-release "${release}-backports" \
"rsync" \ "grub-pc-bin" \
\ \
"cryptsetup-bin" \ "grub-efi-amd64-bin"
"grub-efi-amd64-bin" "grub-pc-bin" \
"git"
# clean cache # clean cache
apt_clean_cache apt_clean_cache
} }