blob: 84dee587c3ad7c076d21fd5682db9f03a75aa6ea (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ -d /config/scripts/commit/post-hooks.d/ ]; then
sg vyattacfg -c "/bin/run-parts /config/scripts/commit/post-hooks.d"
fi
# T775 Add commit post-hook for /run
if [ -d /run/scripts/commit/post-hooks.d/ ]; then
sg vyattacfg -c "/bin/run-parts /run/scripts/commit/post-hooks.d"
fi
|