summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-network/module-setup.sh
blob: bf384322d1cc04f54f2c7d78c7c6785e5aef3e84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
check() {
	[[ $mount_needs ]] && return 1

	if dracut_module_included "network" || dracut_module_included "systemd-networkd" ; then
		derror "This module conflicts with 'network' and 'systemd-networkd'!"
		return 1
	fi
	return 255
}

# called by dracut
depends() {
	echo "busybox kernel-network-modules"
}

# called by dracut
install() {
	# need initqueue to get a clean network start
	dracut_need_initqueue

		# install basic dns libs
	_arch=$(uname -m)
	inst_libdir_file {"tls/$_arch/",tls/,"$_arch/",}"libnss_dns.so.*"

	# stage3 network scripts
	inst "${moddir}/scripts/setup-bootif-network.stage3" "/usr/local/bin/setup-bootif-network"
	inst "${moddir}/scripts/udhcpc-trigger.stage3" "/usr/local/bin/udhcpc-trigger"

	# files for stage4, park them in /opt/openslx
	gcc -o "${initdir}/usr/local/bin/rdns" "${moddir}/rdns.c"
	inst "${moddir}/scripts/setup-bootif-network.stage4" "/opt/openslx/scripts/setup-bootif-network.stage4"
	inst "${moddir}/scripts/udhcpc-trigger.stage4" "/opt/openslx/scripts/udhcpc-trigger.stage4"
	inst "${moddir}/services/udhcpc-bootif.service" "/opt/openslx/services/udhcpc-bootif.service"

	# hooks
	inst_hook cmdline 10 "${moddir}/hooks/parse-ipxe-network-kcl.sh"
	inst_hook pre-pivot 10 "${moddir}/hooks/configure-jumbo-frames.sh"
	# DO NOT TOUCH THIS
	inst_hook pre-pivot 99 "${moddir}/hooks/copy-network-files.sh"
	inst_hook pre-pivot 60 "${moddir}/hooks/activate-bootif-dhcp.sh"
}