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

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

echo "Busybox install failed."
exit 1