summaryrefslogblamecommitdiffstats
path: root/builder/modules.d/slx-clock/module-setup.sh
blob: 50c36fe6c33e71b212038a3bf6b54d2670b5cda9 (plain) (tree)
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() {
	# unpacking config.tgz should be pre-pivot 10, let's do this afterwards
	inst_hook pre-pivot 50 "$moddir/scripts/configure-timesyncd.sh"
}