mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-26 19:00:34 +02:00
* Nodes für Framebuffer. Geändert: * Bootvorgang für Laufbalken bearbeitet. * Installer sollte Bootsplash in initrd installieren. * Neue Boot-Bilder. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@199 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
8 lines
128 B
Bash
8 lines
128 B
Bash
#!/bin/sh
|
|
echo "Setting hostname"
|
|
if [ -z "$DOMAINNAME" ]; then
|
|
hostname $HOSTNAME
|
|
else
|
|
hostname ${HOSTNAME}.${DOMAINNAME}
|
|
fi
|