summaryrefslogtreecommitdiffstats
path: root/validator/src/pxe_initrd/src/etc/init.d/initialnetwork
blob: 233c0b756f7ba6b23f0ada032b4e66d377ad2578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/openrc-run
#
#

depend()
{
	need localmount
	after firewall
}

start()
{
	python3 /bin/initial_network.py
	return 0
}

stop()
{
	return 0
}