indents
This commit is contained in:
parent
801f3b859c
commit
3b05dfecc4
1 changed files with 61 additions and 60 deletions
|
@ -29,7 +29,7 @@ deb https://deb.debian.org/debian-security buster/updates main contrib non-free
|
||||||
printf "\
|
printf "\
|
||||||
en_US.UTF-8 UTF-8
|
en_US.UTF-8 UTF-8
|
||||||
fr_FR.UTF-8 UTF-8
|
fr_FR.UTF-8 UTF-8
|
||||||
" > '/etc/locale.gen'
|
" >"/etc/locale.gen"
|
||||||
# fix alias
|
# fix alias
|
||||||
rm --force "/usr/share/locale/locale.alias"
|
rm --force "/usr/share/locale/locale.alias"
|
||||||
ln --symbolic "/etc/locale.alias" "/usr/share/locale/locale.alias"
|
ln --symbolic "/etc/locale.alias" "/usr/share/locale/locale.alias"
|
||||||
|
@ -41,8 +41,9 @@ fr_FR.UTF-8 UTF-8
|
||||||
debian_disable_frontend
|
debian_disable_frontend
|
||||||
# install packages
|
# install packages
|
||||||
apt-get install --assume-yes \
|
apt-get install --assume-yes \
|
||||||
"byobu" \
|
"mosh" \
|
||||||
"mosh"
|
"tmux" \
|
||||||
|
"byobu"
|
||||||
#
|
#
|
||||||
apt_clean_cache
|
apt_clean_cache
|
||||||
}
|
}
|
||||||
|
@ -140,8 +141,8 @@ ovh_rescue_wipe_1_2TB() {
|
||||||
printf "PassPhrase: "
|
printf "PassPhrase: "
|
||||||
read -r -s passphrase
|
read -r -s passphrase
|
||||||
# encrypt
|
# encrypt
|
||||||
echo "${passphrase}" \
|
echo "${passphrase}" |
|
||||||
| cryptsetup \
|
cryptsetup \
|
||||||
--verbose \
|
--verbose \
|
||||||
--batch-mode \
|
--batch-mode \
|
||||||
--type "luks2" \
|
--type "luks2" \
|
||||||
|
@ -154,8 +155,8 @@ ovh_rescue_wipe_1_2TB() {
|
||||||
luksFormat \
|
luksFormat \
|
||||||
"/dev/sda1"
|
"/dev/sda1"
|
||||||
# open
|
# open
|
||||||
echo "${passphrase}" \
|
echo "${passphrase}" |
|
||||||
| cryptsetup luksOpen "/dev/sda1" "crypt"
|
cryptsetup luksOpen "/dev/sda1" "crypt"
|
||||||
# pv
|
# pv
|
||||||
pvcreate "/dev/mapper/crypt"
|
pvcreate "/dev/mapper/crypt"
|
||||||
# vg
|
# vg
|
||||||
|
|
Loading…
Reference in a new issue