aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/app-conf21
-rwxr-xr-xbin/app-init2
2 files changed, 9 insertions, 14 deletions
diff --git a/bin/app-conf b/bin/app-conf
index 3cf0383..2681f59 100755
--- a/bin/app-conf
+++ b/bin/app-conf
@@ -69,20 +69,15 @@ conf_import() {
mv "$dst.tmp" "$dst"
}
-usage() {
- if [ $# -gt 0 ]
- then
- echo "Error: $@" >&2
- fi
-
- echo "usage: $0 conf <command>" >&2
+usage_text() {
+ echo "usage: $0 conf <command>"
echo ""
- echo "Available commands:" >&2
- echo " get [name] - returns a single value" >&2
- echo " list - list all config values" >&2
- echo " set [name] [value] - set a config parameter" >&2
- echo " delete [name] - deletes a config parameter" >&2
- echo " import [file] - import a file" >&2
+ echo "Available commands:"
+ echo " get [name] - returns a single value"
+ echo " list - list all config values"
+ echo " set [name] [value] - set a config parameter"
+ echo " delete [name] - deletes a config parameter"
+ echo " import [file] - import a file"
exit 1
}
diff --git a/bin/app-init b/bin/app-init
index ba97ebd..c59ba77 100755
--- a/bin/app-init
+++ b/bin/app-init
@@ -8,7 +8,7 @@ APPSH_HOME=$(cd $(dirname "$0")/.. && pwd)
. $APPSH_HOME/lib/common
# HEADER END
-usage_inner() {
+usage_text() {
echo "usage: $usage_app -d dir <resolver> <resolver args>"
}