hostname revision 287686
1218799Snwhitehorn#!/bin/sh
2218799Snwhitehorn#-
3218799Snwhitehorn# Copyright (c) 2011 Nathan Whitehorn
4218799Snwhitehorn# All rights reserved.
5218799Snwhitehorn#
6218799Snwhitehorn# Redistribution and use in source and binary forms, with or without
7218799Snwhitehorn# modification, are permitted provided that the following conditions
8218799Snwhitehorn# are met:
9218799Snwhitehorn# 1. Redistributions of source code must retain the above copyright
10218799Snwhitehorn#    notice, this list of conditions and the following disclaimer.
11218799Snwhitehorn# 2. Redistributions in binary form must reproduce the above copyright
12218799Snwhitehorn#    notice, this list of conditions and the following disclaimer in the
13218799Snwhitehorn#    documentation and/or other materials provided with the distribution.
14218799Snwhitehorn#
15218799Snwhitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16218799Snwhitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17218799Snwhitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18218799Snwhitehorn# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19218799Snwhitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20218799Snwhitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21218799Snwhitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22218799Snwhitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23218799Snwhitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24218799Snwhitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25218799Snwhitehorn# SUCH DAMAGE.
26218799Snwhitehorn#
27218799Snwhitehorn# $FreeBSD: head/usr.sbin/bsdinstall/scripts/hostname 287686 2015-09-11 20:56:36Z dteske $
28218799Snwhitehorn
29218799Snwhitehorn: ${DIALOG_OK=0}
30218799Snwhitehorn: ${DIALOG_CANCEL=1}
31218799Snwhitehorn: ${DIALOG_HELP=2}
32218799Snwhitehorn: ${DIALOG_EXTRA=3}
33218799Snwhitehorn: ${DIALOG_ITEM_HELP=4}
34218799Snwhitehorn: ${DIALOG_ESC=255}
35218799Snwhitehorn
36218799Snwhitehornexec 3>&1
37218799SnwhitehornHOSTNAME=`dialog --backtitle 'FreeBSD Installer' --title 'Set Hostname' --nocancel --inputbox \
38218799Snwhitehorn	'Please choose a hostname for this machine.
39218799Snwhitehorn
40218799SnwhitehornIf you are running on a managed network, please ask your network administrator for an appropriate name.' \
41218799Snwhitehorn	0 0 $(hostname) 2>&1 1>&3`
42218799Snwhitehornif [ $? -eq $DIALOG_CANCEL ]; then exit 1; fi
43218799Snwhitehornexec 3>&-
44218799Snwhitehorn
45218799Snwhitehornecho "hostname=\"$HOSTNAME\"" > $BSDINSTALL_TMPETC/rc.conf.hostname
46287686Sdteskeretval=$?
47287686Sdteskeif [ "$BSDINSTALL_CONFIGCURRENT" ]; then
48218799Snwhitehorn	hostname -s "$HOSTNAME"
49287686Sdteske	retval=$?
50218799Snwhitehornfi
51287686Sdteskeexit $retval
52