www.nico.schottelius.org/software/cinit/browse_source/cinit-0.3pre16/bin/cinit-conf.svc.hostname.linux
Nico Schottelius 0c13ed6979 add cinit-0.3pre16
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-09-29 21:36:27 +02:00

22 lines
509 B
Bash
Executable file

#!/bin/sh
# Nico Schottelius
# cinit: install service, which sets the hostname
# Date: 2005-10-15
#
set -e
. $(dirname $0)/cinit-conf.read-conf
if [ $# -ne 1 ]; then
echo "$(basename $0): hostname"
exit 1
fi
HOSTNAME="$1"
: ${HOSTNAME_BIN:=/bin/hostname}
"$INSTALL_PROG" "$INSTALL_DIRECTORY" \
"${R_SVC_DIR}/network/hostname"
ln -sf "$HOSTNAME_BIN" "${R_SVC_DIR}/network/hostname/$C_ON"
echo "$HOSTNAME" > "${R_SVC_DIR}/network/hostname/$C_ON$C_PARAMS"