xref: /freebsd/usr.sbin/bsdconfig/startup/rcadd (revision ab2043b81eaba0d7d7769b4a58b2b6d17bc464a3)
1641a6cfbSDevin Teske#!/bin/sh
2641a6cfbSDevin Teske#-
3641a6cfbSDevin Teske# Copyright (c) 2012 Devin Teske
4641a6cfbSDevin Teske# All Rights Reserved.
5641a6cfbSDevin Teske#
6641a6cfbSDevin Teske# Redistribution and use in source and binary forms, with or without
7641a6cfbSDevin Teske# modification, are permitted provided that the following conditions
8641a6cfbSDevin Teske# are met:
9641a6cfbSDevin Teske# 1. Redistributions of source code must retain the above copyright
10641a6cfbSDevin Teske#    notice, this list of conditions and the following disclaimer.
11641a6cfbSDevin Teske# 2. Redistributions in binary form must reproduce the above copyright
12641a6cfbSDevin Teske#    notice, this list of conditions and the following disclaimer in the
13641a6cfbSDevin Teske#    documentation and/or other materials provided with the distribution.
14641a6cfbSDevin Teske#
15641a6cfbSDevin Teske# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16641a6cfbSDevin Teske# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, THE
17641a6cfbSDevin Teske# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18641a6cfbSDevin Teske# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19641a6cfbSDevin Teske# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20641a6cfbSDevin Teske# DAMAGES (INLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21641a6cfbSDevin Teske# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22641a6cfbSDevin Teske# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23641a6cfbSDevin Teske# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24641a6cfbSDevin Teske# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25641a6cfbSDevin Teske# SUCH DAMAGE.
26641a6cfbSDevin Teske#
27641a6cfbSDevin Teske# $FreeBSD$
28641a6cfbSDevin Teske#
29641a6cfbSDevin Teske############################################################ INCLUDES
30641a6cfbSDevin Teske
31*ab2043b8SDevin TeskeBSDCFG_SHARE="/usr/share/bsdconfig"
32*ab2043b8SDevin Teske. $BSDCFG_SHARE/common.subr || exit 1
33*ab2043b8SDevin Teskef_include $BSDCFG_SHARE/dialog.subr
34*ab2043b8SDevin Teskef_include $BSDCFG_SHARE/mustberoot.subr
35*ab2043b8SDevin Teskef_include $BSDCFG_SHARE/startup/rcconf.subr
36641a6cfbSDevin Teske
37*ab2043b8SDevin TeskeBSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="140.startup"
38641a6cfbSDevin Teskef_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
39641a6cfbSDevin Teske
40641a6cfbSDevin Teskeipgm=$( f_index_menu_selection $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
41641a6cfbSDevin Teske[ $? -eq $SUCCESS -a "$ipgm" ] && pgm="$ipgm"
42641a6cfbSDevin Teske
43641a6cfbSDevin Teske############################################################ GLOBALS
44641a6cfbSDevin Teske
45641a6cfbSDevin Teske#
46641a6cfbSDevin Teske# Options
47641a6cfbSDevin Teske#
48641a6cfbSDevin Teske# Inherit SHOW_DESC value if set, otherwise default to 1
49641a6cfbSDevin Teske( : ${SHOW_DESC?} ) > /dev/null 2>&1 || SHOW_DESC=1
50641a6cfbSDevin Teske
51641a6cfbSDevin Teske############################################################ FUNCTIONS
52641a6cfbSDevin Teske
53641a6cfbSDevin Teske# dialog_menu_main
54641a6cfbSDevin Teske#
55641a6cfbSDevin Teske# Display the dialog(1)-based application main menu.
56641a6cfbSDevin Teske#
57641a6cfbSDevin Teskedialog_menu_main()
58641a6cfbSDevin Teske{
59641a6cfbSDevin Teske	local menu_list size
60641a6cfbSDevin Teske	local hline="$hline_arrows_tab_enter"
61641a6cfbSDevin Teske	local prompt=""
62641a6cfbSDevin Teske
63641a6cfbSDevin Teske	menu_list="
64641a6cfbSDevin Teske		'1' '$msg_add_from_list'
65641a6cfbSDevin Teske		'2' '$msg_add_custom'
66641a6cfbSDevin Teske	" # END-QUOTE
67641a6cfbSDevin Teske
68641a6cfbSDevin Teske	size=$( eval f_dialog_menu_size \
69641a6cfbSDevin Teske	        	\"\$DIALOG_TITLE\"     \
70641a6cfbSDevin Teske	        	\"\$DIALOG_BACKTITLE\" \
71641a6cfbSDevin Teske	                \"\$prompt\"           \
72641a6cfbSDevin Teske	        	\"\$hline\"            \
73641a6cfbSDevin Teske	        	$menu_list             )
74641a6cfbSDevin Teske
75641a6cfbSDevin Teske	eval $DIALOG \
76641a6cfbSDevin Teske		--clear --title \"\$DIALOG_TITLE\" \
77641a6cfbSDevin Teske		--backtitle \"\$DIALOG_BACKTITLE\" \
78641a6cfbSDevin Teske		--hline \"\$hline\"                \
79641a6cfbSDevin Teske		--ok-label \"\$msg_ok\"            \
80641a6cfbSDevin Teske		--cancel-label \"\$msg_cancel\"    \
81641a6cfbSDevin Teske		--menu \"\$prompt\" $size          \
82641a6cfbSDevin Teske		$menu_list                         \
83641a6cfbSDevin Teske		2> "$DIALOG_TMPDIR/dialog.menu.$$"
84641a6cfbSDevin Teske}
85641a6cfbSDevin Teske
86641a6cfbSDevin Teske############################################################ MAIN
87641a6cfbSDevin Teske
88641a6cfbSDevin Teske# Incorporate rc-file if it exists
89641a6cfbSDevin Teske[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
90641a6cfbSDevin Teske
91641a6cfbSDevin Teske#
92641a6cfbSDevin Teske# Process command-line arguments
93641a6cfbSDevin Teske#
94641a6cfbSDevin Teskewhile getopts hSX flag; do
95641a6cfbSDevin Teske	case "$flag" in
96641a6cfbSDevin Teske	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm";;
97641a6cfbSDevin Teske	esac
98641a6cfbSDevin Teskedone
99641a6cfbSDevin Teskeshift $(( $OPTIND - 1 ))
100641a6cfbSDevin Teske
101641a6cfbSDevin Teske#
102641a6cfbSDevin Teske# Initialize
103641a6cfbSDevin Teske#
104641a6cfbSDevin Teskef_dialog_init
105641a6cfbSDevin Teskef_dialog_title "$msg_add_startup_directive"
106641a6cfbSDevin Teskef_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
107641a6cfbSDevin Teskef_mustberoot_init
108641a6cfbSDevin Teske
109641a6cfbSDevin Teske#
110641a6cfbSDevin Teske# Launch application main menu
111641a6cfbSDevin Teske#
112641a6cfbSDevin Teskewhile :; do
113641a6cfbSDevin Teske	dialog_menu_main
114641a6cfbSDevin Teske	retval=$?
115641a6cfbSDevin Teske	mtag=$( f_dialog_menutag )
116641a6cfbSDevin Teske
117641a6cfbSDevin Teske	[ $retval -eq 0 ] || f_die
118641a6cfbSDevin Teske
119641a6cfbSDevin Teske	case "$mtag" in
120641a6cfbSDevin Teske	1) # Add From List
121641a6cfbSDevin Teske		# Loop for easy return
122641a6cfbSDevin Teske		while :; do
123641a6cfbSDevin Teske			f_dialog_input_rclist
124641a6cfbSDevin Teske			retval=$?
125641a6cfbSDevin Teske			mtag=$( f_dialog_menutag )
126641a6cfbSDevin Teske
127641a6cfbSDevin Teske			[ $retval -eq 0 ] || break
128641a6cfbSDevin Teske
129641a6cfbSDevin Teske			case "$mtag" in
130641a6cfbSDevin Teske			"X $msg_exit" ) break ;;
131641a6cfbSDevin Teske			*) # Anything else is a directive
132641a6cfbSDevin Teske				rcvar="${mtag# }"
133641a6cfbSDevin Teske				$BSDCFG_LIBE/$APP_DIR/rcedit \
134641a6cfbSDevin Teske					${USE_XDIALOG:+-X} \
135641a6cfbSDevin Teske					"$rcvar" || continue
136641a6cfbSDevin Teske			esac
137641a6cfbSDevin Teske			break
138641a6cfbSDevin Teske		done
139641a6cfbSDevin Teske		[ $retval -eq 0 ] || continue
140641a6cfbSDevin Teske		;;
141641a6cfbSDevin Teske	2) # Add Custom
142641a6cfbSDevin Teske		f_dialog_input_rcvar || continue
143641a6cfbSDevin Teske		$BSDCFG_LIBE/$APP_DIR/rcedit ${USE_XDIALOG:+-X} "$rcvar" ||
144641a6cfbSDevin Teske			continue
145641a6cfbSDevin Teske		;;
146641a6cfbSDevin Teske	esac
147641a6cfbSDevin Teskedone
148641a6cfbSDevin Teske
149641a6cfbSDevin Teskeexit $SUCCESS
150641a6cfbSDevin Teske
151641a6cfbSDevin Teske################################################################################
152641a6cfbSDevin Teske# END
153641a6cfbSDevin Teske################################################################################
154