7 lines
74 B
Bash
Executable file
7 lines
74 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -exu
|
|
|
|
rootdir="$1"
|
|
|
|
chroot "$rootdir" busybox --install -s
|