Ubuntu Server: Create /target if missing

The directory used to be created before [20.04.2]... AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARGH!!!!!!!!!!
This commit is contained in:
Saverio Miroddi 2021-06-05 22:44:56 +02:00
parent 58bdf91ce0
commit be98f385f1

View File

@ -1118,6 +1118,12 @@ You can switch anytime to this terminal, and back, in order to read the instruct
# Server, but it's better not to take risks. # Server, but it's better not to take risks.
# #
if ! mountpoint -q "$c_installed_os_mount_dir"; then if ! mountpoint -q "$c_installed_os_mount_dir"; then
# There must be a conspiracy 🙄 `/target` used to be created before [20.04.2].
#
if [[ ! -d $c_installed_os_mount_dir ]]; then
mkdir "$c_installed_os_mount_dir"
fi
mount "${v_temp_volume_device}p2" "$c_installed_os_mount_dir" mount "${v_temp_volume_device}p2" "$c_installed_os_mount_dir"
fi fi