2013-02-14 18:20:30 +00:00
|
|
|
#!/bin/bash
|
2013-07-22 10:06:54 +00:00
|
|
|
|
2014-09-04 04:56:29 +00:00
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2014-04-03 02:24:15 +00:00
|
|
|
set -eu
|
2014-03-29 03:28:22 +00:00
|
|
|
set -o pipefail
|
|
|
|
|
2015-09-01 20:49:25 +00:00
|
|
|
# Abort early if dib-run-parts is not found to prevent a meaningless
|
|
|
|
# error message from the subsequent install command
|
|
|
|
DIB_RUN_PARTS=$(which dib-run-parts)
|
|
|
|
|
2013-02-14 18:20:30 +00:00
|
|
|
exec sudo install -m 0755 -o root -g root -D \
|
2015-09-01 20:49:25 +00:00
|
|
|
$DIB_RUN_PARTS \
|
2013-02-14 18:20:30 +00:00
|
|
|
$TARGET_ROOT/usr/local/bin/dib-run-parts
|