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

if hash busybox && busybox --install -s; then
	echo "Busybox installed"
else
	. /lib/dracut-lib.sh
	emergency_shell "Failed to initialize busybox, things will go wrong..."
fi
true