summaryrefslogtreecommitdiffstats
path: root/builder/modules.d/slx-addons/module-setup.sh
blob: d75b38adbbefa0e2471925f51a689a0a48994aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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() {
	inst_hook pre-pivot 30 "$moddir/scripts/setup-addons.sh"
	inst "${moddir}/services/ldconfig.service" \
		"/opt/openslx/services/ldconfig.service"
}