diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-27 10:26:33 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-27 10:26:33 -0800 |
commit | 724b5f960353937d52b2fdcabfb6f011bea1446d (patch) | |
tree | 85b35945e35185398603710181234bd54514599c /src | |
parent | 2a8e5030a85ba753234aea9ba5e4afc9d02c9ea5 (diff) | |
parent | c484e8f1eecc8812803612d7e21e27104f839f49 (diff) | |
download | vyatta-cfg-724b5f960353937d52b2fdcabfb6f011bea1446d.tar.gz vyatta-cfg-724b5f960353937d52b2fdcabfb6f011bea1446d.zip |
Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg into jenner
Diffstat (limited to 'src')
-rw-r--r-- | src/commit2.c | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/src/commit2.c b/src/commit2.c index 6d358c5..871c085 100644 --- a/src/commit2.c +++ b/src/commit2.c @@ -95,13 +95,14 @@ void usage() { printf("commit2\n"); - printf("-d\t\tdebug mode\n"); - printf("-s\t\tdump sorted transactions and exit\n"); - printf("-p\t\tdisable priority mode\n"); - printf("-t\t\ttest mode (don't apply directory modifications)\n"); - printf("-e\t\tprint node where error occurred\n"); - printf("-c\t\tdump node coverage and execution times\n"); - printf("-h\t\thelp\n"); + printf("\t-d\t\tdebug mode\n"); + printf("\t-s\t\tdump sorted transactions and exit\n"); + printf("\t-p\t\tdisable priority mode\n"); + printf("\t-t\t\ttest mode (don't apply directory modifications)\n"); + printf("\t-e\t\tprint node where error occurred\n"); + printf("\t-c\t\tdump node coverage and execution times\n"); + printf("\t-o\t\tdisable partial commit\n"); + printf("\t-h\t\thelp\n"); } /** @@ -114,9 +115,10 @@ main(int argc, char** argv) int ch; boolean priority_mode = TRUE; boolean test_mode = FALSE; + boolean disable_partial_commit = FALSE; //grab inputs - while ((ch = getopt(argc, argv, "dpthsec")) != -1) { + while ((ch = getopt(argc, argv, "dpthseco")) != -1) { switch (ch) { case 'd': g_debug = TRUE; @@ -140,6 +142,9 @@ main(int argc, char** argv) case 'c': g_coverage = TRUE; break; + case 'o': + disable_partial_commit = TRUE; + break; default: usage(); exit(0); @@ -214,7 +219,9 @@ main(int argc, char** argv) //no op, need better way to define true root } else { - complete(comp_cp_node, test_mode); + if (disable_partial_commit == FALSE) { + complete(comp_cp_node, test_mode); + } } } |