c886c4cbe1
Reorders the preinstall, making the order more explicit. Also dedupes some folder setup. Change-Id: I423dcba169558ff6037a3382b997675722e77405
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
|