summaryrefslogtreecommitdiffstats
path: root/builder/modules.d/openslx_tmp_format/module-setup.sh
blob: 551d2d8ed7ad90ab31997a3ec6e1d08cd2c1bfa4 (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 20 "$moddir/scripts/openslx_tmp_format.sh"
	inst_multiple mkfs.xfs mkfs.ext4
}