642f906476
The various distro elements include a copy of this script which installs all files in the bin/ dir of the copied element hooks in to /usr/local/bin. Lets share code rather than repeating ourselves. Change-Id: I354382f8c42ede2e9b8c548b7df8367c03e6836e
13 lines
198 B
Bash
Executable File
13 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# migrate pt_pax flags to xt_pax
|
|
if [[ -a /usr/sbin/migrate-pax ]]; then
|
|
/usr/sbin/migrate-pax -m
|
|
fi
|