#!/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 pipefail
set -o errtrace
shopt -s inherit_errexit
shopt -s shift_verbose

## Simple test program that is not supposed to get started.
## For the purpose of testing AppArmor.

## Trace execution: this canary must never run, so a live trace in the log is
## the signal that AppArmor failed to block it.
set -x

true "$0: START"

exit 1
