#!/bin/bash

## Copyright (C) 2023 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
## See the file COPYING for copying conditions.

## Code path below the early `exit 1` is intentionally a draft; the
## consumer is expected to edit and re-enable the variables.
# shellcheck disable=SC2317

set -x
set -o errexit
set -o nounset
set -o pipefail
set -o errtrace
shopt -s inherit_errexit

true "$0: ERROR: Please verify and edit this SHARED script!"
exit 1

original_disk=/dev/nvme0n1
backup_disk=/dev/sdb

test -e "$original_disk"
test -e "$backup_disk"
