diff --git a/bash/ovh-rescue.sh b/bash/ovh-rescue.sh index e5aa429..e8008d2 100644 --- a/bash/ovh-rescue.sh +++ b/bash/ovh-rescue.sh @@ -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 }