1#!/bin/sh
2#-
3# Copyright (c) 2012-2013 Devin Teske
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in the
13#    documentation and/or other materials provided with the distribution.
14#
15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
27# $FreeBSD$
28#
29############################################################ INCLUDES
30
31BSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_dprintf "%s: loading includes..." "$0"
34f_include $BSDCFG_SHARE/dialog.subr
35f_include $BSDCFG_SHARE/mustberoot.subr
36
37BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="140.startup"
38f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
39
40f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" ipgm &&
41	pgm="${ipgm:-$pgm}"
42
43############################################################ FUNCTIONS
44
45# dialog_menu_main
46#
47# Display the dialog(1)-based application main menu.
48#
49dialog_menu_main()
50{
51	local prompt=
52	local menu_list="
53		'X' '$msg_exit'
54		'1' '$msg_toggle_startup_services'
55		'2' '$msg_view_edit_startup_configuration'
56		'3' '$msg_miscellaneous_startup_services'
57	" # END-QUOTE
58	local defaultitem= # Calculated below
59	local hline="$hline_arrows_tab_enter"
60
61	local height width rows
62	eval f_dialog_menu_size height width rows \
63	                        \"\$DIALOG_TITLE\"     \
64	                        \"\$DIALOG_BACKTITLE\" \
65	                        \"\$prompt\"           \
66	                        \"\$hline\"            \
67	                        $menu_list
68
69	# Obtain default-item from previously stored selection
70	f_dialog_default_fetch defaultitem
71
72	local menu_choice
73	menu_choice=$( eval $DIALOG \
74		--title \"\$DIALOG_TITLE\"         \
75		--backtitle \"\$DIALOG_BACKTITLE\" \
76		--hline \"\$hline\"                \
77		--ok-label \"\$msg_ok\"            \
78		--cancel-label \"\$msg_cancel\"    \
79		--default-item \"\$defaultitem\"   \
80		--menu \"\$prompt\"                \
81		$height $width $rows               \
82		$menu_list                         \
83		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
84	)
85	local retval=$?
86	f_dialog_data_sanitize menu_choice
87	f_dialog_menutag_store "$menu_choice"
88	f_dialog_default_store "$menu_choice"
89	return $retval
90}
91
92############################################################ MAIN
93
94# Incorporate rc-file if it exists
95[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
96
97#
98# Process command-line arguments
99#
100while getopts h$GETOPTS_STDARGS flag; do
101	case "$flag" in
102	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
103	esac
104done
105shift $(( $OPTIND - 1 ))
106
107#
108# Initialize
109#
110f_dialog_title "$msg_startup"
111f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
112f_mustberoot_init
113
114#
115# Launch application main menu
116#
117while :; do
118	dialog_menu_main || f_die
119	f_dialog_menutag_fetch mtag
120
121	command=
122	case "$mtag" in
123	X) break ;;
124	1) command=rcvar  ;; # Toggle Startup Services
125	2) command=rcconf ;; # View/Edit Startup Configuration
126	3) command=misc   ;; # Miscellaneous Startup Services
127	esac
128
129	if [ "$command" ]; then
130		$BSDCFG_LIBE/$APP_DIR/$command ${USE_XDIALOG:+-X}
131	else
132		f_die 1 "$msg_unknown_startup_menu_selection"
133	fi
134done
135
136exit $SUCCESS
137
138################################################################################
139# END
140################################################################################
141