1#!/bin/sh
2#-
3# Copyright (c) 2011 Nathan Whitehorn
4# Copyright (c) 2015-2018 Devin Teske
5# All rights reserved.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26# SUCH DAMAGE.
27#
28# $FreeBSD$
29#
30############################################################ INCLUDES
31
32BSDCFG_SHARE="/usr/share/bsdconfig"
33. $BSDCFG_SHARE/common.subr || exit 1
34f_dprintf "%s: loading_includes..." "$0"
35f_include $BSDCFG_SHARE/dialog.subr
36
37############################################################ CONFIGURATION
38
39#
40# Default value
41#
42: ${HOSTNAME=$( hostname )}
43
44#
45# Default file to store hostname entry in
46#
47: ${HOSTNAMEFILE:=$BSDINSTALL_TMPETC/rc.conf.hostname}
48
49############################################################ GLOBALS
50
51: ${BSDDIALOG_CANCEL=1}
52
53#
54# Strings that should be moved to an i18n file and loaded with f_include_lang()
55#
56msg_freebsd_installer="$OSNAME Installer"
57msg_ok="OK"
58msg_please_choose_a_hostname="Please choose a hostname for this machine.\n\nIf you are running on a managed network, please ask\nyour network administrator for an appropriate name."
59msg_set_hostname="Set Hostname"
60
61#
62# Command strings for various tasks
63#
64ECHO_OVERWRITE='echo "%s" > "%s"'
65SET_HOSTNAME='hostname -s "%s"'
66
67############################################################ FUNCTIONS
68
69# dialog_hostname
70#
71# Display input box (without cancel button) for user to enter desired hostname.
72#
73dialog_hostname()
74{
75	local prompt="$msg_please_choose_a_hostname"
76	local hline="Use TAB and Enter to select $msg_ok"
77	local value="$*"
78
79	bsddialog \
80		--title "$DIALOG_TITLE"         \
81		--backtitle "$DIALOG_BACKTITLE" \
82		--hline "$hline"                \
83		--ok-label "$msg_ok"            \
84		--no-cancel                     \
85		--inputbox "$prompt"            \
86		0 56 "$value"                   \
87		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
88}
89
90############################################################ MAIN
91
92#
93# Initialize
94#
95f_dialog_title "$msg_set_hostname"
96f_dialog_backtitle "$msg_freebsd_installer"
97
98#
99# Get user input
100#
101HOSTNAME=$( dialog_hostname "$HOSTNAME" )
102[ $? -eq $BSDDIALOG_CANCEL ] && exit 1
103
104#
105# Store the user's choice
106#
107f_eval_catch "$pgm" echo "$ECHO_OVERWRITE" \
108	'hostname=\"$HOSTNAME\"' "$HOSTNAMEFILE"
109retval=$?
110
111#
112# Activate entry if configured
113#
114if [ "$BSDINSTALL_CONFIGCURRENT" ]; then
115	f_eval_catch "$pgm" hostname "$SET_HOSTNAME" "$HOSTNAME"
116	retval=$?
117fi
118
119exit $retval
120
121################################################################################
122# END
123################################################################################
124