summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2015-03-04 14:40:04 +0100
committerPeter Rajnoha <prajnoha@redhat.com>2015-03-04 14:40:58 +0100
commita7bfc2cbb565eb668068a091d7c2a7a4f4f2ffcc (patch)
treeac6b10fa2fd655c57de2764e332c0b172242df2b
parent733bfe36f5ba34f11b297e41ec249aaa6b238d7b (diff)
downloadlvm2-a7bfc2cbb565eb668068a091d7c2a7a4f4f2ffcc.tar.gz
cleanup: tools: "or use -S for selection" --> "or use --select for selection"
-rw-r--r--tools/lvchange.c2
-rw-r--r--tools/lvremove.c2
-rw-r--r--tools/pvchange.c2
-rw-r--r--tools/vgexport.c2
-rw-r--r--tools/vgremove.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/tools/lvchange.c b/tools/lvchange.c
index 0351e4e1c..5e90adcdf 100644
--- a/tools/lvchange.c
+++ b/tools/lvchange.c
@@ -1182,7 +1182,7 @@ int lvchange(struct cmd_context *cmd, int argc, char **argv)
cmd->handles_missing_pvs = 1;
if (!argc && !arg_is_set(cmd, select_ARG)) {
- log_error("Please give logical volume path(s) or use -S for selection.");
+ log_error("Please give logical volume path(s) or use --select for selection.");
return EINVALID_CMD_LINE;
}
diff --git a/tools/lvremove.c b/tools/lvremove.c
index df920fbb4..ce0b65b8b 100644
--- a/tools/lvremove.c
+++ b/tools/lvremove.c
@@ -19,7 +19,7 @@ int lvremove(struct cmd_context *cmd, int argc, char **argv)
{
if (!argc && !arg_is_set(cmd, select_ARG)) {
log_error("Please enter one or more logical volume paths "
- "or use -S for selection.");
+ "or use --select for selection.");
return EINVALID_CMD_LINE;
}
diff --git a/tools/pvchange.c b/tools/pvchange.c
index 3eb9e9667..3e0894f61 100644
--- a/tools/pvchange.c
+++ b/tools/pvchange.c
@@ -180,7 +180,7 @@ int pvchange(struct cmd_context *cmd, int argc, char **argv)
handle->custom_handle = &params;
if (!(arg_count(cmd, all_ARG)) && !argc && !handle->internal_report_for_select) {
- log_error("Please give a physical volume path or use -S for selection.");
+ log_error("Please give a physical volume path or use --select for selection.");
ret = EINVALID_CMD_LINE;
goto out;
}
diff --git a/tools/vgexport.c b/tools/vgexport.c
index 4bed42118..6d5b4f645 100644
--- a/tools/vgexport.c
+++ b/tools/vgexport.c
@@ -53,7 +53,7 @@ bad:
int vgexport(struct cmd_context *cmd, int argc, char **argv)
{
if (!argc && !arg_count(cmd, all_ARG) && !arg_is_set(cmd, select_ARG)) {
- log_error("Please supply volume groups or use -S for selection or use -a for all.");
+ log_error("Please supply volume groups or use --select for selection or use -a for all.");
return EINVALID_CMD_LINE;
}
diff --git a/tools/vgremove.c b/tools/vgremove.c
index d33ab1be3..fd9735604 100644
--- a/tools/vgremove.c
+++ b/tools/vgremove.c
@@ -85,7 +85,7 @@ int vgremove(struct cmd_context *cmd, int argc, char **argv)
if (!argc && !arg_is_set(cmd, select_ARG)) {
log_error("Please enter one or more volume group paths "
- "or use -S for selection.");
+ "or use --select for selection.");
return EINVALID_CMD_LINE;
}