13 lines
243 B
Bash
13 lines
243 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -Eeuo pipefail
|
||
|
|
|
||
|
|
# shellcheck source=runner/logger.bash
|
||
|
|
source logger.bash
|
||
|
|
|
||
|
|
log.debug "Running ARC Job Started Hooks"
|
||
|
|
|
||
|
|
for hook in /etc/arc/hooks/job-started.d/*; do
|
||
|
|
log.debug "Running hook: $hook"
|
||
|
|
"$hook" "$@"
|
||
|
|
done
|