summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-ssl/module-setup.sh
blob: 618b8f805b47b79d439ad73335de1eb0250a2537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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
	slx_service "s3-ssl-sat" "Enable SSL communication with Satellite Server" \
		--after    "s3-unpack-config-tgz.service" \
		--requires "s3-unpack-config-tgz.service" \
		--before   "s3-copy-network-files.service"
}