BastionGuard/thirdparty/bastionguard-recovery-data/packaging/bastionguard-recovery-data-pkexec.in
specialworld83 f0f913a209 Release 2.0
2026-07-15 10:52:22 +02:00

13 lines
399 B
Bash
Executable file

#!/usr/bin/env sh
# BastionGuard™ Recovery Data privileged launcher.
# Installed layout: /usr/bin/bastionguard-recovery-data-pkexec launches
# /usr/bin/bastionguard-recovery-data through PolicyKit.
BINARY="@CMAKE_INSTALL_FULL_BINDIR@/bastionguard-recovery-data"
if [ ! -x "$BINARY" ]; then
echo "BastionGuard executable not found at $BINARY." >&2
exit 127
fi
exec pkexec "$BINARY" "$@"