2024-11-11 11:17:52 +00:00
|
|
|
#! /usr/bin/env sh
|
2024-11-11 10:57:19 +00:00
|
|
|
|
2024-11-11 15:48:26 +00:00
|
|
|
rescue_ovh_install() {
|
2024-11-11 13:03:33 +00:00
|
|
|
local package
|
2024-11-11 12:05:39 +00:00
|
|
|
local release="bookworm"
|
2024-11-11 11:32:13 +00:00
|
|
|
# update catalog
|
|
|
|
apt-get update
|
2024-11-11 13:03:33 +00:00
|
|
|
# disable frontend
|
2024-11-11 11:32:13 +00:00
|
|
|
debian_disable_frontend
|
|
|
|
# upgrade packages
|
|
|
|
apt-get upgrade --assume-yes
|
2024-11-11 13:03:33 +00:00
|
|
|
# clean cache
|
2024-11-11 11:32:13 +00:00
|
|
|
apt_clean_cache
|
|
|
|
# install packages
|
2024-11-11 13:03:33 +00:00
|
|
|
set \
|
2024-11-11 13:32:37 +00:00
|
|
|
"man-db" \
|
|
|
|
"dmidecode" "efibootmgr" "lshw" "pciutils" "usbutils" \
|
2024-11-11 12:26:01 +00:00
|
|
|
"parted" "mdadm" "cryptsetup-bin" "lvm2" \
|
2024-11-11 13:32:37 +00:00
|
|
|
"btrfs-progs" "dosfstools" "duperemove" "squashfs-tools" \
|
|
|
|
"git" "micro" "nano" "python3" "rsync" "vim" \
|
|
|
|
"exa" "lf" "ncdu" "nnn" "ranger" "tree" \
|
|
|
|
"file" "htop" "iotop" "ipcalc" "libdigest-sha3-perl" "lsof"
|
2024-11-11 13:03:33 +00:00
|
|
|
for package in "${@}"; do
|
2024-11-11 13:04:48 +00:00
|
|
|
echo
|
|
|
|
echo "${package}"
|
2024-11-11 13:03:33 +00:00
|
|
|
apt-get install --assume-yes \
|
|
|
|
"${package}"
|
|
|
|
apt_clean_cache
|
|
|
|
done
|
2024-11-11 11:32:13 +00:00
|
|
|
# install backports
|
2024-11-11 13:03:33 +00:00
|
|
|
set \
|
2024-11-11 12:26:01 +00:00
|
|
|
"grub-pc-bin" \
|
2024-11-11 11:37:07 +00:00
|
|
|
\
|
2024-11-11 12:26:01 +00:00
|
|
|
"grub-efi-amd64-bin"
|
2024-11-11 13:03:33 +00:00
|
|
|
for package in "${@}"; do
|
2024-11-11 13:04:48 +00:00
|
|
|
echo
|
|
|
|
echo "${package}"
|
2024-11-11 13:03:33 +00:00
|
|
|
apt-get install --assume-yes \
|
|
|
|
--target-release "${release}-backports" \
|
|
|
|
"${package}"
|
|
|
|
apt_clean_cache
|
|
|
|
done
|
2023-05-12 22:49:39 +00:00
|
|
|
}
|
|
|
|
|
2024-11-11 15:48:26 +00:00
|
|
|
rescue_ovh_upload() {
|
2024-11-11 11:37:07 +00:00
|
|
|
local host="${1}"
|
2024-11-11 13:40:55 +00:00
|
|
|
local hostname="${2}"
|
|
|
|
if [ "${hostname}" ]; then
|
2024-11-11 11:37:07 +00:00
|
|
|
local user="root"
|
|
|
|
#
|
|
|
|
local user_host="${user}@${host}"
|
|
|
|
# remove fingerprints
|
|
|
|
ssh-keygen -R "${host}"
|
|
|
|
# copy ssh id
|
|
|
|
ssh-copy-id \
|
|
|
|
-o "StrictHostKeyChecking=accept-new" \
|
|
|
|
"${user_host}"
|
|
|
|
# upload root
|
2024-11-11 13:40:55 +00:00
|
|
|
rsync --delete --recursive \
|
|
|
|
"${MAIN_BASH_ROOT}/" "${user_host}:/etc/bash/"
|
2024-11-11 11:37:07 +00:00
|
|
|
# call setup
|
|
|
|
# TODO variable
|
2024-11-11 13:40:55 +00:00
|
|
|
ssh "${user_host}" -- "\
|
2024-11-11 16:33:55 +00:00
|
|
|
source \"/etc/bash/main.sh\" ; rescue_configure \"${hostname}\""
|
2024-11-11 11:37:07 +00:00
|
|
|
# create session
|
|
|
|
ssh "${user_host}" -- byobu new-session -d
|
|
|
|
# send keys
|
2024-11-11 15:48:26 +00:00
|
|
|
ssh "${user_host}" -- byobu send-keys "rescue_ovh_install" "C-m"
|
2024-11-11 11:37:07 +00:00
|
|
|
# attach session
|
|
|
|
mosh "${user_host}" -- byobu attach-session
|
|
|
|
else
|
2024-11-11 11:38:32 +00:00
|
|
|
echo "Host?"
|
2024-11-11 11:37:07 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2023-05-12 22:49:39 +00:00
|
|
|
}
|
2023-05-13 00:26:42 +00:00
|
|
|
|
2024-11-11 15:48:26 +00:00
|
|
|
rescue_ovh_wipe_vle2_0_init() {
|
2024-11-11 14:40:04 +00:00
|
|
|
local device="/dev/sdb"
|
|
|
|
local passphrase
|
2024-11-11 11:32:13 +00:00
|
|
|
local unit="mib"
|
2024-11-11 14:40:04 +00:00
|
|
|
# read passphrase
|
|
|
|
printf "PassPhrase: "
|
|
|
|
read -r -s passphrase
|
2024-11-11 15:37:27 +00:00
|
|
|
# warn
|
2024-11-11 11:32:13 +00:00
|
|
|
lsblk
|
|
|
|
printf "%s" "WIPE ${device} /?\\ OR CANCEL /!\\"
|
|
|
|
read -r
|
|
|
|
#
|
2024-11-11 16:21:21 +00:00
|
|
|
parted "${device}" \
|
|
|
|
--script \
|
|
|
|
mktable gpt
|
2024-11-11 11:32:13 +00:00
|
|
|
#
|
2024-11-11 16:21:21 +00:00
|
|
|
parted "${device}" \
|
|
|
|
unit "${unit}" \
|
|
|
|
mkpart "crypt" 4610 40960
|
2024-11-11 11:32:13 +00:00
|
|
|
#
|
2024-11-11 16:21:21 +00:00
|
|
|
parted "${device}" \
|
|
|
|
unit "${unit}" \
|
|
|
|
mkpart "boot" 514 4610
|
2024-11-11 11:32:13 +00:00
|
|
|
#
|
2024-11-11 16:21:21 +00:00
|
|
|
parted "${device}" \
|
|
|
|
unit "${unit}" \
|
|
|
|
mkpart "esp" 2 514
|
|
|
|
parted "${device}" \
|
|
|
|
set 3 esp on
|
2024-11-11 11:32:13 +00:00
|
|
|
#
|
2024-11-11 16:21:21 +00:00
|
|
|
parted "${device}" \
|
|
|
|
unit "${unit}" \
|
|
|
|
mkpart bios 1 2
|
|
|
|
parted "${device}" \
|
|
|
|
set 4 bios_grub on
|
2024-11-11 15:37:27 +00:00
|
|
|
# bios / wipe
|
2024-11-11 14:40:04 +00:00
|
|
|
dd if="/dev/zero" of="${device}4"
|
2024-11-11 15:37:27 +00:00
|
|
|
# esp / wipe
|
|
|
|
dd if="/dev/zero" of="${device}3" bs="1M"
|
|
|
|
# esp / format
|
|
|
|
mkfs.vfat \
|
|
|
|
-F 32 \
|
|
|
|
-S 4096 \
|
|
|
|
-i "00000001" \
|
|
|
|
-n "esp" \
|
|
|
|
"${device}3"
|
|
|
|
# esp / mount
|
|
|
|
mkdir --parents "/media/esp"
|
|
|
|
mount "${device}3" "/media/esp"
|
|
|
|
# boot / wipe
|
|
|
|
dd status="progress" if="/dev/zero" of="${device}2" bs="1G" count=1
|
|
|
|
# boot / format
|
|
|
|
mkfs.btrfs --force \
|
2024-11-11 15:38:48 +00:00
|
|
|
--checksum "sha256" \
|
|
|
|
--label "boot" \
|
|
|
|
--uuid "00000000-0000-0000-0000-00000000000b" \
|
|
|
|
"${device}2"
|
2024-11-11 15:37:27 +00:00
|
|
|
# boot / mount
|
|
|
|
mkdir --parents "/media/boot"
|
|
|
|
mount --options "autodefrag,compress-force=zstd" \
|
|
|
|
"${device}2" "/media/boot"
|
|
|
|
# crypt / wipe
|
|
|
|
dd status="progress" if="/dev/zero" of="${device}1" bs="1G" count=1
|
|
|
|
# crypt / encrypt
|
2024-11-11 11:37:07 +00:00
|
|
|
echo "${passphrase}" |
|
|
|
|
cryptsetup \
|
|
|
|
--verbose \
|
|
|
|
--batch-mode \
|
|
|
|
--type "luks2" \
|
|
|
|
--pbkdf "argon2id" \
|
|
|
|
--cipher "aes-xts-plain64" \
|
2024-11-11 15:37:27 +00:00
|
|
|
--iter-time 4096 \
|
2024-11-11 11:37:07 +00:00
|
|
|
--key-size 512 \
|
|
|
|
--hash "sha512" \
|
|
|
|
--use-random \
|
|
|
|
luksFormat \
|
2024-11-11 14:40:04 +00:00
|
|
|
"${device}1"
|
2024-11-11 15:37:27 +00:00
|
|
|
# crypt / open
|
2024-11-11 11:37:07 +00:00
|
|
|
echo "${passphrase}" |
|
2024-11-11 14:40:04 +00:00
|
|
|
cryptsetup luksOpen "${device}1" "crypt"
|
2024-11-11 15:37:27 +00:00
|
|
|
}
|
|
|
|
|
2024-11-11 15:48:26 +00:00
|
|
|
rescue_ovh_wipe_vle2_1_zero() {
|
2024-11-11 15:37:27 +00:00
|
|
|
# crypt / zero
|
|
|
|
dd status="progress" if="/dev/zero" of="/dev/mapper/crypt" bs="1G"
|
|
|
|
}
|
|
|
|
|
2024-11-11 15:48:26 +00:00
|
|
|
rescue_ovh_wipe_vle2_2_make() {
|
2024-11-11 15:37:27 +00:00
|
|
|
local passphrase
|
|
|
|
# crypt / close
|
2024-11-11 11:32:13 +00:00
|
|
|
cryptsetup luksClose "crypt"
|
2024-11-11 15:37:27 +00:00
|
|
|
# read passphrase
|
|
|
|
printf "PassPhrase: "
|
|
|
|
read -r -s passphrase
|
|
|
|
# crypt / encrypt
|
|
|
|
echo "${passphrase}" |
|
|
|
|
cryptsetup \
|
|
|
|
--verbose \
|
|
|
|
--batch-mode \
|
|
|
|
--type "luks2" \
|
|
|
|
--pbkdf "argon2id" \
|
|
|
|
--cipher "aes-xts-plain64" \
|
|
|
|
--iter-time 4096 \
|
|
|
|
--key-size 512 \
|
|
|
|
--hash "sha512" \
|
|
|
|
--use-random \
|
|
|
|
luksFormat \
|
|
|
|
"${device}1"
|
|
|
|
# crypt / open
|
|
|
|
echo "${passphrase}" |
|
|
|
|
cryptsetup luksOpen "${device}1" "crypt"
|
|
|
|
# crypt / format
|
|
|
|
mkfs.btrfs --force \
|
2024-11-11 15:38:48 +00:00
|
|
|
--checksum "sha256" \
|
|
|
|
--label "crypt" \
|
|
|
|
--uuid "00000000-0000-0000-0000-00000000000c" \
|
|
|
|
"${device}1"
|
2024-11-11 15:37:27 +00:00
|
|
|
# crypt / mount
|
|
|
|
mkdir --parents "/media/crypt"
|
|
|
|
mount --options "autodefrag,compress-force=zstd" \
|
|
|
|
"${device}1" "/media/crypt"
|
|
|
|
# crypt / swap
|
|
|
|
btrfs filesystem mkswapfile \
|
2024-11-11 15:38:48 +00:00
|
|
|
--size "4g" \
|
|
|
|
--uuid "00000000-0000-0000-0000-000000000005" \
|
|
|
|
"/media/crypt/swap"
|
2024-11-11 15:37:27 +00:00
|
|
|
}
|
|
|
|
|
2024-11-11 15:48:26 +00:00
|
|
|
rescue_ovh_wipe_vle2_3_close() {
|
2024-11-11 15:37:27 +00:00
|
|
|
umount "/media/boot"
|
|
|
|
umount "/media/crypt" &&
|
|
|
|
cryptsetup luksClose "crypt"
|
2023-05-13 00:26:42 +00:00
|
|
|
}
|