mmdebstrap/hooks/busybox/setup00.sh

18 lines
246 B
Bash
Raw Normal View History

#!/bin/sh
2022-05-24 02:14:08 +00:00
set -eu
if [ "${MMDEBSTRAP_VERBOSITY:-1}" -ge 3 ]; then
2022-05-24 02:14:08 +00:00
set -x
fi
rootdir="$1"
mkdir -p "$rootdir/bin"
echo root:x:0:0:root:/root:/bin/sh > "$rootdir/etc/passwd"
cat << END > "$rootdir/etc/group"
root:x:0:
mail:x:8:
utmp:x:43:
END