summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-runmode/module-setup.sh
blob: 7705ad068b96e27e0ed37b166b5bc1d94055e978 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
check() {
	# Tell dracut that this module should only be included if it is required
	# explicitly.
	return 255
}
depends() {
	echo dnbd3-rootfs
}
install() {
	# unpacking config.tgz should be pre-pivot 10, let's do this afterwards
	inst_hook pre-pivot 50 "$moddir/scripts/runmode.sh"
}