16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
prereqs() {
|
|
local o="/scripts/init-bottom/overlayroot" p=""
|
|
for p in "$DESTDIR/" ""; do
|
|
[ -e "$p$o" ] && echo "overlayroot" && return 0
|
|
done
|
|
}
|
|
|
|
[ "$1" = "prereqs" ] && { prereqs; exit; }
|
|
|
|
. /usr/share/initramfs-tools/hook-functions
|
|
|
|
# vi: ts=4 noexpandtab
|