Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

18 lines
344 B
Bash

#! /bin/sh -
#
# %Z%%M% %I% %E% SMI
#
# Executed once at boot time
#
PATH=/sbin:/single:/usr/bin:/usr/etc; export PATH
HOME=/; export HOME
#
# Repeat network configuration attempt until we get an answer.
#
while [ -z "`hostname`" ]; do
ifconfig -ad auto-revarp up
hostconfig -p bootparams
echo "re-trying host configuration..."
done