summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-ssl/module-setup.sh
blob: 023d1b8bf1befd55ea5109b68f6ef0d3ed415249 (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/90
	inst_hook pre-pivot 99 "$moddir/hooks/setup-ssl-sat.sh"
}