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
# install packages
apt-get install --assume-yes \
"file" "htop" "iotop" "lsof" \
"file" "htop" "iotop" "lsof" "rsync" \
\
"parted" "mdadm" "lvm2" \
"parted" "mdadm" "cryptsetup-bin" "lvm2" \
"lshw" \
"micro" \
"exa" "ncdu" "nnn" "ranger" "tree" \
"squashfs-tools" \
"uuid-runtime"
"git"
# clean cache
apt_clean_cache
# install backports
apt-get install --assume-yes \
--target-release "${release}-backports" \
"rsync" \
"grub-pc-bin" \
\
"cryptsetup-bin" \
"grub-efi-amd64-bin" "grub-pc-bin" \
"git"
"grub-efi-amd64-bin"
# clean cache
apt_clean_cache
}