sh/bash/ovh-rescue.sh

179 lines
4.4 KiB
Bash
Raw Normal View History

2023-05-15 10:20:00 +00:00
function ovh-rescue-configure {
2023-05-13 02:08:37 +00:00
local packages=(
'byobu' 'mosh'
)
2023-05-13 01:05:57 +00:00
# apt / conf
2023-05-12 22:49:39 +00:00
echo -n "\
Acquire::AllowInsecureRepositories False;
Acquire::AllowWeakRepositories False;
Acquire::AllowDowngradeToInsecureRepositories False;
Acquire::Check-Valid-Until True;
APT::Install-Recommends False;
APT::Install-Suggests False;
APT::Get::Show-Versions True;
Dir::Etc::SourceParts '';
Dpkg::Progress True;
" > '/etc/apt/apt.conf'
2023-05-13 01:05:57 +00:00
# apt / sources
2023-05-12 22:49:39 +00:00
echo -n "\
deb https://deb.debian.org/debian buster main contrib non-free
deb https://deb.debian.org/debian buster-backports main contrib non-free
deb https://deb.debian.org/debian buster-updates main contrib non-free
deb https://deb.debian.org/debian-security buster/updates main contrib non-free
" > '/etc/apt/sources.list'
2023-05-13 01:05:57 +00:00
# bash / rc
2023-05-15 10:07:16 +00:00
main_link_bashrc
2023-05-13 01:05:57 +00:00
# host name
2023-05-13 01:44:57 +00:00
hostname 'ovh'
2023-05-13 01:05:57 +00:00
# locales
echo -n "\
en_US.UTF-8 UTF-8
fr_FR.UTF-8 UTF-8
" > '/etc/locale.gen'
# fix alias
rm --force '/usr/share/locale/locale.alias'
ln --symbolic '/etc/locale.alias' '/usr/share/locale/locale.alias'
# generate locales
locale-gen
2023-05-13 02:08:37 +00:00
# update catalog
apt-get update
2023-05-14 09:51:45 +00:00
#
debian_disable_frontend
2023-05-13 02:08:37 +00:00
# install packages
apt-get install --assume-yes "${packages[@]}"
2023-05-15 19:23:36 +00:00
#
apt_clean_cache
2023-05-13 00:54:16 +00:00
}
function ovh-rescue-install {
local release='buster'
local packages=(
2023-05-13 02:08:37 +00:00
# installed
2023-05-13 00:54:16 +00:00
'parted' 'mdadm' 'lvm2'
2023-05-13 02:08:37 +00:00
# install
2023-05-13 00:54:16 +00:00
'lshw'
2023-05-14 14:24:24 +00:00
'file' 'micro'
2023-05-13 00:54:16 +00:00
'grub-efi-amd64-bin' 'grub-pc-bin'
'htop' 'iotop' 'lsof'
'exa' 'ncdu' 'nnn' 'ranger' 'tree'
'squashfs-tools'
'uuid-runtime'
)
local backports=(
2023-05-13 02:08:37 +00:00
# installed
'cryptsetup-bin' 'rsync'
# install
2023-05-13 00:54:16 +00:00
'git'
)
2023-05-13 01:05:57 +00:00
# update catalog
2023-05-12 22:49:39 +00:00
apt-get update
#
2023-05-14 09:51:45 +00:00
debian_disable_frontend
2023-05-13 01:05:57 +00:00
# upgrade packages
2023-05-12 22:49:39 +00:00
apt-get upgrade --assume-yes
2023-05-15 19:23:36 +00:00
#
apt_clean_cache
2023-05-13 01:05:57 +00:00
# install packages
2023-05-12 22:49:39 +00:00
apt-get install --assume-yes "${packages[@]}"
2023-05-15 19:23:36 +00:00
#
apt_clean_cache
2023-05-13 01:05:57 +00:00
# install backports
2023-05-12 22:49:39 +00:00
apt-get install --assume-yes \
--target-release "${release}-backports" "${backports[@]}"
2023-05-15 19:23:36 +00:00
#
apt_clean_cache
2023-05-12 22:49:39 +00:00
}
function ovh-rescue-upload {
local host="${1}"
if [ "${host}" ] ; then
local user='root'
#
local user_host="${user}@${host}"
2023-05-13 01:05:57 +00:00
# remove fingerprints
2023-05-12 22:49:39 +00:00
ssh-keygen -R "${host}"
2023-05-13 01:05:57 +00:00
# copy ssh id
2023-05-12 22:49:39 +00:00
ssh-copy-id \
-o 'StrictHostKeyChecking=accept-new' \
"${user_host}"
# upload root
2023-05-15 07:19:43 +00:00
rsync --delete --recursive "${MAIN_BASH_ROOT}/" "${user_host}:/etc/bash/"
2023-05-12 22:49:39 +00:00
# call setup
2023-05-14 09:55:08 +00:00
# TODO variable
2023-05-15 10:20:00 +00:00
ssh "${user_host}" -- "source '/etc/bash/main.sh' ; ovh-rescue-configure"
2023-05-12 22:49:39 +00:00
# create session
ssh "${user_host}" -- byobu new-session -d
2023-05-13 09:30:41 +00:00
# send keys
ssh "${user_host}" -- byobu send-keys 'ovh-rescue-install' 'C-m'
2023-05-12 22:49:39 +00:00
# attach session
mosh "${user_host}" -- byobu attach-session
else
echo 'Host?'
return 1
fi
}
2023-05-13 00:26:42 +00:00
function ovh-rescue-wipe-1-2TB {
local device='/dev/sda'
local unit='mib'
#
2023-05-13 01:28:08 +00:00
lsblk
2023-05-13 01:18:59 +00:00
echo -n 'WIPE' "${device}" '/?\ OR CANCEL /!\'
2023-05-13 00:26:42 +00:00
read
#
parted "${device}" --script mktable gpt
#
parted "${device}" unit "${unit}" mkpart 'crypt' 65795 1907729
#
parted "${device}" unit "${unit}" mkpart 'boot' 259 65795
#
parted "${device}" unit "${unit}" mkpart 'esp' 2 259
parted "${device}" set 3 esp on
#
parted "${device}" unit "${unit}" mkpart bios 1 2
parted "${device}" set 4 bios_grub on
# wipe bios
dd if='/dev/zero' of='/dev/sda4'
# format esp
mkfs.vfat -F 32 -n 'esp' '/dev/sda3'
# format boot
2023-05-13 01:42:00 +00:00
mkfs.ext4 -F -L 'boot' '/dev/sda2'
2023-05-13 01:18:59 +00:00
# read passphrase
local passphrase
2023-05-13 01:36:05 +00:00
echo -n 'PassPhrase: '
2023-05-13 01:23:05 +00:00
read -r -s passphrase
2023-05-13 00:26:42 +00:00
# encrypt
2023-05-13 01:18:59 +00:00
echo "${passphrase}" \
| cryptsetup \
2023-05-13 00:26:42 +00:00
--verbose \
2023-05-13 01:18:59 +00:00
--batch-mode \
--type 'luks2' \
--pbkdf 'argon2id' \
--cipher 'aes-xts-plain64' \
2023-05-13 00:26:42 +00:00
--iter-time 8192 \
--key-size 512 \
2023-05-13 01:18:59 +00:00
--hash 'sha512' \
2023-05-13 00:26:42 +00:00
--use-random \
luksFormat \
'/dev/sda1'
# open
2023-05-13 01:18:59 +00:00
echo "${passphrase}" \
| cryptsetup luksOpen '/dev/sda1' 'crypt'
2023-05-13 00:26:42 +00:00
# pv
pvcreate '/dev/mapper/crypt'
# vg
vgcreate 'crypt' '/dev/mapper/crypt'
# lv swap
lvcreate --name 'swap' --size '68719476736b' 'crypt'
# lv data
lvcreate --name 'data' --extents '100%FREE' 'crypt'
# format swap
mkswap --label 'swap' '/dev/mapper/crypt-swap'
# format data
mkfs.ext4 -L 'data' '/dev/mapper/crypt-data'
# vg off
vgchange --activate n 'crypt'
# close
cryptsetup luksClose 'crypt'
}