summaryrefslogtreecommitdiffstats
path: root/builder/modules.d/openslx_tmp_mount/module-setup.sh
blob: 77c8f40b11d1daf6ffefd10bc011626a5f9fa7c8 (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 dnbd3-rootfs
}
install() {
	inst_hook pre-mount 50 "$moddir/scripts/format_newroot_tmp.sh"
}