#!/bin/bash

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

set -o errexit
set -o nounset
set -o errtrace
set -o pipefail

source /usr/libexec/helper-scripts/live-mode.sh

printf '%s\n' "$live_status_detected"

if [ "$live_status_detected" = "true" ]; then
  exit 0
else
  exit 1
fi
