blob: 09f6bcd14bce52f49d01c95695ff21c89c219c31 (
plain)
1
2
3
4
5
|
#! /bin/sh
me="${0##*/}"
command -v python3 >/dev/null && exec /usr/libexec/samba/$me "$@"
echo "$me: E: This program requires python3. Please install python3 package to use it." >&2
exit 42
|