forked from kiss-community/kiss
06ace10d8a
See #229
8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/sh -e
|
|
# List all system-wide hooks
|
|
|
|
for hook in "$KISS_ROOT/var/db/kiss/hooks/"*; do
|
|
printf '%s\n' "${hook##*/}"
|
|
done
|
|
|