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

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