summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-ssl/module-setup.sh
blob: 1080c6eac4f9e8b6e1df20ba4275d937e282e502 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
check() {
	# Tell dracut that this module should only be included if it is required
	# explicitly.
	return 255
}
depends() {
	echo dnbd3-rootfs
}
install() {
	# config.tgz unpacking happens in pre-pivot/20
	inst_hook pre-pivot 30 "$moddir/hooks/setup-ssl-sat.sh"
}