summaryrefslogtreecommitdiffstats
path: root/modules.d/openslx-tmp-mount/module-setup.sh
blob: dc7d1d104289dfbf67c5403096bdde9c25121fce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

check() {
	# Tell dracut that this module should only be included if it is required
	# explicitly.
	return 255
}
depends() {
	echo dnbd-root-filesystem
}
install() {
	inst_hook pre-pivot 30 "$moddir/scripts/openslx_tmp_mount.sh"
}