summaryrefslogtreecommitdiffstats
path: root/modules.d/busybox/hooks/s3-install-busybox.sh
blob: 3e42153b1c3e073864173f96f23d24453481a015 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/ash

if busybox --install -s; then
	echo "Busybox installed."
	exit 0
fi

echo "Busybox install failed."
exit 1