diff options
Diffstat (limited to 'debian/samba-log-parser')
-rwxr-xr-x | debian/samba-log-parser | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/samba-log-parser b/debian/samba-log-parser new file mode 100755 index 0000000..09f6bcd --- /dev/null +++ b/debian/samba-log-parser @@ -0,0 +1,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 |