aboutsummaryrefslogtreecommitdiffstats
path: root/src/actionhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/actionhelper.c')
-rw-r--r--src/actionhelper.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/actionhelper.c b/src/actionhelper.c
index 6507e7b..6e76b2b 100644
--- a/src/actionhelper.c
+++ b/src/actionhelper.c
@@ -398,3 +398,24 @@ void print_HELP_help() {
ckhelp("Note:\nRunning ck without arguments will print all the available actions.");
report_help();
}
+
+void print_conf_help(void) {
+ ckhelp("Set a different ck configuration directory.\n");
+ ckhelp("This has to be passed before any action or action argument");
+ ckhelp("and after verbose (if set).\n");
+ ckhelp("Usage:");
+ ckhelp(" ck -c /path/to/conf ...");
+ ckhelp(" ck config /path/to/conf ...\n");
+ ckhelp("ck will use the database and config file in the path supplied");
+ ckhelp("to perform any actions.\n");
+ ckhelp("Tip:\nYou can alias `ck -c /path/to/conf` and use the new alias");
+ ckhelp("to organise a different set of configurations, or some custom scrpits.");
+ report_help();
+}
+
+void print_verbose_help(void) {
+ ckhelp("WIP\n");
+ ckhelp("Currently passing the verbose flag, prints a log of what ck is doing");
+ ckhelp("during excecution of an action.");
+ report_help();
+}