mirror of
https://github.com/openlibrecommunity/olcrtc.git
synced 2026-06-08 13:24:44 +00:00
9 lines
130 B
Bash
9 lines
130 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
exe="$(readlink /proc/1/exe 2>/dev/null || true)"
|
|
case "$exe" in
|
|
*/olcrtc) exit 0 ;;
|
|
*) exit 1 ;;
|
|
esac
|