1236099Sdes# Copyright (c) 2012 Ron McDowell
2236099Sdes# Copyright (c) 2012 Devin Teske
3236099Sdes# All rights reserved.
4236099Sdes#
5236099Sdes# Redistribution and use in source and binary forms, with or without
6236099Sdes# modification, are permitted provided that the following conditions
7236099Sdes# are met:
8236099Sdes# 1. Redistributions of source code must retain the above copyright
9255376Sdes#    notice, this list of conditions and the following disclaimer.
10236099Sdes# 2. Redistributions in binary form must reproduce the above copyright
11236099Sdes#    notice, this list of conditions and the following disclaimer in the
12236099Sdes#    documentation and/or other materials provided with the distribution.
13236099Sdes#
14236099Sdes# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15236099Sdes# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16236099Sdes# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17236099Sdes# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18236099Sdes# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19236099Sdes# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20236099Sdes# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21236099Sdes# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22236099Sdes# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23236099Sdes# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24236099Sdes# SUCH DAMAGE.
25236099Sdes#
26236099Sdes
27236099Sdes#
28236099Sdes# Title that will be shown in the bsdconfig menu.
29255376Sdes#
30236099Sdesmenu_title="Login/Group Management"
31236099Sdes
32236099Sdes#
33236099Sdes# A short descriptive line shown at the bottom of the bsdconfig menu. keep it
34236099Sdes# short because any line longer than the terminal width will be truncated.
35236099Sdes#
36255376Sdesmenu_help="Manage system user and/or group information"
37255376Sdes
38255376Sdes#
39236099Sdes# Two-part variable that defines an action to take when `keyword' is passed on
40236099Sdes# a bsdconfig command line. Variable takes the form "keyword|command" and
41236099Sdes# multiple occurrences of the variable (with different `keyword's, or different
42# `keyword's AND `command's) are allowed.  If `command' begins with a '/' then
43# the full path to the program is needed. If `command' begins with anything
44# else it is a path relative to the directory this INDEX file is in. `keyword'
45# can be i18n'ed but `command' is the name of a script.
46#
47menu_selection="usermgmt|usermgmt"
48menu_selection="useradd|useradd"
49menu_selection="useredit|useredit"
50menu_selection="userdel|userdel"
51menu_selection="groupmgmt|usermgmt"
52menu_selection="groupadd|groupadd"
53menu_selection="groupedit|groupedit"
54menu_selection="groupdel|groupdel"
55
56#
57# ------------ Items below this line do NOT need i18n translation ------------
58#
59# Name of the program to be run when this menu choice is selected. If it begins
60# with a '/' then the full path to the program is needed. If it begins with
61# anything else it is a path relative to the directory this INDEX file is in.
62#
63menu_program="usermgmt"
64