1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "svccfg.h"
#include "svccfg_grammar.h"
struct help_message help_messages[] = {
{ SCC_VALIDATE, "validate file\n\n"
"Process a manifest file without changing the repository."
},
{ SCC_IMPORT, "import file\n\nImport a manifest into the repository." },
{ SCC_EXPORT, "export {service | pattern} [> file]\n\n"
"Print a manifest for service to file, or standard output if not specified."
},
{ SCC_ARCHIVE, "archive [> file]\n\n"
"Print an archive to file, or standard output if not specified."
},
{ SCC_APPLY, "apply file\n\nApply a profile." },
{ SCC_EXTRACT, "extract [> file]\n\n"
"Print a profile to file, or standard output if not specified." },
{ SCC_REPOSITORY, "repository file\n\nSet the repository to modify." },
{ SCC_INVENTORY, "inventory file\n\n"
"Print the services and instances contained in a manifest."
},
{ SCC_SET, "set [-vV]\n\n"
"Without arguments, display current options. Otherwise set the given options."
},
{ SCC_END, "end\n\nStop processing and exit." },
{ SCC_HELP, "help [command]\n\nDisplay help." },
{ SCC_LIST, "list [glob_pattern]\n\n"
"List children of the currently selected entity."
},
{ SCC_ADD, "add name\n\n"
"Add a new child entity to the currently selected entity."
},
{ SCC_DELETE, "delete [-f] {name | fmri | pattern}\n\n"
"Delete the named child entity or the one indicated by fmri. With -f, delete\n"
"running services.\n"
},
{ SCC_SELECT, "select {name | fmri | pattern}\n\n"
"Select the named child entity or the one indicated by fmri."
},
{ SCC_UNSELECT, "unselect\n\n"
"Select the parent of the currently selected entity."
},
{ SCC_LISTPG, "listpg [glob_pattern]\n\n"
"List property groups of the currently selected entity."
},
{ SCC_ADDPG, "addpg name type [P]\n\n"
"Add a new property group to the currently selected entity."
},
{ SCC_DELPG, "delpg name\n\n"
"Delete the named property group from the currently selected entity."
},
{ SCC_LISTPROP, "listprop [glob_pattern]\n\n"
"List property groups and properties of the currently selected entity."
},
{ SCC_SETPROP,
"\tsetprop pg/name = [type:] value\n"
"\tsetprop pg/name = [type:] ([value...])\n\n"
"Set the pg/name property of the currently selected entity. Values may be\n"
"enclosed in double-quotes. Value lists may span multiple lines."
},
{ SCC_DELPROP, "delprop pg/name\n\n"
"Delete the pg/name property of the currently selected entity."
},
{ SCC_EDITPROP, "editprop\n\n"
"Invoke $EDITOR to edit the properties of the currently selected entity."
},
{ SCC_ADDPROPVALUE, "addpropvalue pg/name [type:] value\n\n"
"Add the given value to the named property."
},
{ SCC_DELPROPVALUE, "delpropvalue pg/name glob_pattern\n\n"
"Delete all values matching the glob pattern fron the given property."
},
{ SCC_SETENV, "setenv [-s | -i | -m method] NAME value\n\n"
"Set an environment variable for the given service, instance, or method "
"context."
},
{ SCC_UNSETENV, "unsetenv [-s | -i | -m method] NAME value\n\n"
"Unset an environment variable for the given service, instance, or method "
"context."
},
{ SCC_LISTSNAP, "listsnap\n\n"
"List snapshots of the currently selected instance."
},
{ SCC_SELECTSNAP, "selectsnap [snapshot]\n\n"
"Select a snapshot of the currently selected instance, or the Editing\n"
"snapshot by default."
},
{ SCC_REVERT, "revert [snapshot]\n\n"
"Change the properties of the currently selected instance and its ancestors\n"
"to those in a snapshot, or the currently selected snapshot by default."
},
{ 0, NULL }
};
|