summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-ssl/module-setup.sh
blob: b3fd803b661cd21616cb10650c0311dd2406e470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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/90
	# BEFORE "copy network files"
	inst_hook pre-pivot 98 "$moddir/hooks/setup-ssl-sat.sh"
}