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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
|
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>CedarBackup2.cli</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="CedarBackup2-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://cedar-backup.sourceforge.net/">CedarBackup2</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="CedarBackup2-module.html">Package CedarBackup2</a> ::
Module cli
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="CedarBackup2.cli-module.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== MODULE DESCRIPTION ==================== -->
<h1 class="epydoc">Module cli</h1><p class="nomargin-top"><span class="codelink"><a href="CedarBackup2.cli-pysrc.html">source code</a></span></p>
<p>Provides command-line interface implementation for the cback
script.</p>
<h1 class="heading">Summary</h1>
<p>The functionality in this module encapsulates the command-line
interface for the cback script. The cback script itself is very short,
basically just an invokation of one function implemented here. That,
in turn, makes it simpler to validate the command line interface (for
instance, it's easier to run pychecker against a module, and unit tests
are easier, too).</p>
<p>The objects and functions implemented in this module are probably
not useful to any code external to Cedar Backup. Anyone else
implementing their own command-line interface would have to reimplement
(or at least enhance) all of this anyway.</p>
<h1 class="heading">Backwards Compatibility</h1>
<p>The command line interface has changed between Cedar Backup 1.x and
Cedar Backup 2.x. Some new switches have been added, and the actions
have become simple arguments rather than switches (which is a much more
standard command line format). Old 1.x command lines are generally no
longer valid.</p>
<hr />
<div class="fields"> <p><strong>Author:</strong>
Kenneth J. Pronovici <pronovic@ieee.org>
</p>
</div><!-- ==================== CLASSES ==================== -->
<a name="section-Classes"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Classes</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Classes"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="CedarBackup2.cli.Options-class.html" class="summary-name">Options</a><br />
Class representing command-line options for the cback script.
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="CedarBackup2.cli._ActionItem-class.html" class="summary-name" onclick="show_private();">_ActionItem</a><br />
Class representing a single action to be executed.
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="CedarBackup2.cli._ManagedActionItem-class.html" class="summary-name" onclick="show_private();">_ManagedActionItem</a><br />
Class representing a single action to be executed on a managed
peer.
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="CedarBackup2.cli._ActionSet-class.html" class="summary-name" onclick="show_private();">_ActionSet</a><br />
Class representing a set of local actions to be executed.
</td>
</tr>
</table>
<!-- ==================== FUNCTIONS ==================== -->
<a name="section-Functions"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Functions</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Functions"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#cli" class="summary-sig-name">cli</a>()</span><br />
Implements the command-line interface for the <code>cback</code>
script.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#cli">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_usage" class="summary-sig-name" onclick="show_private();">_usage</a>(<span class="summary-sig-arg">fd</span>=<span class="summary-sig-default">sys.stdout</span>)</span><br />
Prints usage information for the cback script.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_usage">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_version" class="summary-sig-name" onclick="show_private();">_version</a>(<span class="summary-sig-arg">fd</span>=<span class="summary-sig-default">sys.stdout</span>)</span><br />
Prints version information for the cback script.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_version">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_diagnostics" class="summary-sig-name" onclick="show_private();">_diagnostics</a>(<span class="summary-sig-arg">fd</span>=<span class="summary-sig-default">sys.stdout</span>)</span><br />
Prints runtime diagnostics information.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_diagnostics">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#setupLogging" class="summary-sig-name">setupLogging</a>(<span class="summary-sig-arg">options</span>)</span><br />
Set up logging based on command-line options.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#setupLogging">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_setupLogfile" class="summary-sig-name" onclick="show_private();">_setupLogfile</a>(<span class="summary-sig-arg">options</span>)</span><br />
Sets up and creates logfile as needed.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupLogfile">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_setupFlowLogging" class="summary-sig-name" onclick="show_private();">_setupFlowLogging</a>(<span class="summary-sig-arg">logfile</span>,
<span class="summary-sig-arg">options</span>)</span><br />
Sets up flow logging.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupFlowLogging">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_setupOutputLogging" class="summary-sig-name" onclick="show_private();">_setupOutputLogging</a>(<span class="summary-sig-arg">logfile</span>,
<span class="summary-sig-arg">options</span>)</span><br />
Sets up command output logging.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupOutputLogging">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_setupDiskFlowLogging" class="summary-sig-name" onclick="show_private();">_setupDiskFlowLogging</a>(<span class="summary-sig-arg">flowLogger</span>,
<span class="summary-sig-arg">logfile</span>,
<span class="summary-sig-arg">options</span>)</span><br />
Sets up on-disk flow logging.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupDiskFlowLogging">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_setupScreenFlowLogging" class="summary-sig-name" onclick="show_private();">_setupScreenFlowLogging</a>(<span class="summary-sig-arg">flowLogger</span>,
<span class="summary-sig-arg">options</span>)</span><br />
Sets up on-screen flow logging.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupScreenFlowLogging">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#_setupDiskOutputLogging" class="summary-sig-name" onclick="show_private();">_setupDiskOutputLogging</a>(<span class="summary-sig-arg">outputLogger</span>,
<span class="summary-sig-arg">logfile</span>,
<span class="summary-sig-arg">options</span>)</span><br />
Sets up on-disk command output logging.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupDiskOutputLogging">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="CedarBackup2.cli-module.html#setupPathResolver" class="summary-sig-name">setupPathResolver</a>(<span class="summary-sig-arg">config</span>)</span><br />
Set up the path resolver singleton based on configuration.</td>
<td align="right" valign="top">
<span class="codelink"><a href="CedarBackup2.cli-pysrc.html#setupPathResolver">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ==================== VARIABLES ==================== -->
<a name="section-Variables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Variables</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Variables"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DEFAULT_CONFIG"></a><span class="summary-name">DEFAULT_CONFIG</span> = <code title="'/etc/cback.conf'"><code class="variable-quote">'</code><code class="variable-string">/etc/cback.conf</code><code class="variable-quote">'</code></code><br />
The default configuration file.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DEFAULT_LOGFILE"></a><span class="summary-name">DEFAULT_LOGFILE</span> = <code title="'/var/log/cback.log'"><code class="variable-quote">'</code><code class="variable-string">/var/log/cback.log</code><code class="variable-quote">'</code></code><br />
The default log file path.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DEFAULT_OWNERSHIP"></a><span class="summary-name">DEFAULT_OWNERSHIP</span> = <code title="['root', 'adm']"><code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">root</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">adm</code><code class="variable-quote">'</code><code class="variable-group">]</code></code><br />
Default ownership for the logfile.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DEFAULT_MODE"></a><span class="summary-name">DEFAULT_MODE</span> = <code title="416">416</code><br />
Default file permissions mode on the logfile.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="CedarBackup2.cli-module.html#VALID_ACTIONS" class="summary-name">VALID_ACTIONS</a> = <code title="['collect',
'stage',
'store',
'purge',
'rebuild',
'validate',
'initialize',
'all']"><code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">collect</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">stage</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">store</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">purge</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">rebuil</code><code class="variable-ellipsis">...</code></code><br />
List of valid actions.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="COMBINE_ACTIONS"></a><span class="summary-name">COMBINE_ACTIONS</span> = <code title="['collect', 'stage', 'store', 'purge']"><code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">collect</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">stage</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">store</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">purge</code><code class="variable-quote">'</code><code class="variable-group">]</code></code><br />
List of actions which can be combined with other actions.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="NONCOMBINE_ACTIONS"></a><span class="summary-name">NONCOMBINE_ACTIONS</span> = <code title="['rebuild', 'validate', 'initialize', 'all']"><code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">rebuild</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">validate</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">initialize</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">all</code><code class="variable-quote">'</code><code class="variable-group">]</code></code><br />
List of actions which cannot be combined with other actions.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="logger"></a><span class="summary-name">logger</span> = <code title="logging.getLogger("CedarBackup2.log.cli")">logging.getLogger("CedarBackup2.log.cli")</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DISK_LOG_FORMAT"></a><span class="summary-name">DISK_LOG_FORMAT</span> = <code title="'%(asctime)s --> [%(levelname)-7s] %(message)s'"><code class="variable-quote">'</code><code class="variable-string">%(asctime)s --> [%(levelname)-7s] %(message)s</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DISK_OUTPUT_FORMAT"></a><span class="summary-name">DISK_OUTPUT_FORMAT</span> = <code title="'%(message)s'"><code class="variable-quote">'</code><code class="variable-string">%(message)s</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="SCREEN_LOG_FORMAT"></a><span class="summary-name">SCREEN_LOG_FORMAT</span> = <code title="'%(message)s'"><code class="variable-quote">'</code><code class="variable-string">%(message)s</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="SCREEN_LOG_STREAM"></a><span class="summary-name">SCREEN_LOG_STREAM</span> = <code title="sys.stdout">sys.stdout</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="DATE_FORMAT"></a><span class="summary-name">DATE_FORMAT</span> = <code title="'%Y-%m-%dT%H:%M:%S %Z'"><code class="variable-quote">'</code><code class="variable-string">%Y-%m-%dT%H:%M:%S %Z</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="REBUILD_INDEX"></a><span class="summary-name">REBUILD_INDEX</span> = <code title="0">0</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="VALIDATE_INDEX"></a><span class="summary-name">VALIDATE_INDEX</span> = <code title="0">0</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="INITIALIZE_INDEX"></a><span class="summary-name">INITIALIZE_INDEX</span> = <code title="0">0</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="COLLECT_INDEX"></a><span class="summary-name">COLLECT_INDEX</span> = <code title="100">100</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="STAGE_INDEX"></a><span class="summary-name">STAGE_INDEX</span> = <code title="200">200</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="STORE_INDEX"></a><span class="summary-name">STORE_INDEX</span> = <code title="300">300</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="PURGE_INDEX"></a><span class="summary-name">PURGE_INDEX</span> = <code title="400">400</code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="SHORT_SWITCHES"></a><span class="summary-name">SHORT_SWITCHES</span> = <code title="'hVbqc:fMNl:o:m:OdsD'"><code class="variable-quote">'</code><code class="variable-string">hVbqc:fMNl:o:m:OdsD</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="CedarBackup2.cli-module.html#LONG_SWITCHES" class="summary-name">LONG_SWITCHES</a> = <code title="['help',
'version',
'verbose',
'quiet',
'config=',
'full',
'managed',
'managed-only',
..."><code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">help</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">version</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">verbose</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">quiet</code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">confi</code><code class="variable-ellipsis">...</code></code>
</td>
</tr>
</table>
<!-- ==================== FUNCTION DETAILS ==================== -->
<a name="section-FunctionDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Function Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-FunctionDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="cli"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">cli</span>()</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#cli">source code</a></span>
</td>
</tr></table>
<p>Implements the command-line interface for the <code>cback</code>
script.</p>
<p>Essentially, this is the "main routine" for the cback
script. It does all of the argument processing for the script, and then
sets about executing the indicated actions.</p>
<p>As a general rule, only the actions indicated on the command line will
be executed. We will accept any of the built-in actions and any of the
configured extended actions (which makes action list verification a two-
step process).</p>
<p>The <code>'all'</code> action has a special meaning: it means that the
built-in set of actions (collect, stage, store, purge) will all be
executed, in that order. Extended actions will be ignored as part of the
<code>'all'</code> action.</p>
<p>Raised exceptions always result in an immediate return. Otherwise, we
generally return when all specified actions have been completed. Actions
are ignored if the help, version or validate flags are set.</p>
<p>A different error code is returned for each type of failure:</p>
<ul>
<li>
<code>1</code>: The Python interpreter version is < 2.5
</li>
<li>
<code>2</code>: Error processing command-line arguments
</li>
<li>
<code>3</code>: Error configuring logging
</li>
<li>
<code>4</code>: Error parsing indicated configuration file
</li>
<li>
<code>5</code>: Backup was interrupted with a CTRL-C or similar
</li>
<li>
<code>6</code>: Error executing specified backup actions
</li>
</ul>
<dl class="fields">
<dt>Returns:</dt>
<dd>Error code as described above.</dd>
</dl>
<div class="fields"> <strong>Notes:</strong>
<ul class="nomargin-top">
<li>
This function contains a good amount of logging at the INFO level,
because this is the right place to document high-level flow of
control (i.e. what the command-line options were, what config file
was being used, etc.)
</li>
<li>
We assume that anything that <i>must</i> be seen on the screen is
logged at the ERROR level. Errors that occur before logging can be
configured are written to <code>sys.stderr</code>.
</li>
</ul>
</div></td></tr></table>
</div>
<a name="_usage"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_usage</span>(<span class="sig-arg">fd</span>=<span class="sig-default">sys.stdout</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_usage">source code</a></span>
</td>
</tr></table>
<p>Prints usage information for the cback script.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>fd</code></strong> - File descriptor used to print information.</li>
</ul></dd>
</dl>
<div class="fields"> <p><strong>Note:</strong>
The <code>fd</code> is used rather than <code>print</code> to
facilitate unit testing.
</p>
</div></td></tr></table>
</div>
<a name="_version"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_version</span>(<span class="sig-arg">fd</span>=<span class="sig-default">sys.stdout</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_version">source code</a></span>
</td>
</tr></table>
<p>Prints version information for the cback script.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>fd</code></strong> - File descriptor used to print information.</li>
</ul></dd>
</dl>
<div class="fields"> <p><strong>Note:</strong>
The <code>fd</code> is used rather than <code>print</code> to
facilitate unit testing.
</p>
</div></td></tr></table>
</div>
<a name="_diagnostics"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_diagnostics</span>(<span class="sig-arg">fd</span>=<span class="sig-default">sys.stdout</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_diagnostics">source code</a></span>
</td>
</tr></table>
<p>Prints runtime diagnostics information.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>fd</code></strong> - File descriptor used to print information.</li>
</ul></dd>
</dl>
<div class="fields"> <p><strong>Note:</strong>
The <code>fd</code> is used rather than <code>print</code> to
facilitate unit testing.
</p>
</div></td></tr></table>
</div>
<a name="setupLogging"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">setupLogging</span>(<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#setupLogging">source code</a></span>
</td>
</tr></table>
<p>Set up logging based on command-line options.</p>
<p>There are two kinds of logging: flow logging and output logging.
Output logging contains information about system commands executed by
Cedar Backup, for instance the calls to <code>mkisofs</code> or
<code>mount</code>, etc. Flow logging contains error and informational
messages used to understand program flow. Flow log messages and output
log messages are written to two different loggers target
(<code>CedarBackup2.log</code> and <code>CedarBackup2.output</code>).
Flow log messages are written at the ERROR, INFO and DEBUG log levels,
while output log messages are generally only written at the INFO log
level.</p>
<p>By default, output logging is disabled. When the
<code>options.output</code> or <code>options.debug</code> flags are set,
output logging will be written to the configured logfile. Output logging
is never written to the screen.</p>
<p>By default, flow logging is enabled at the ERROR level to the screen
and at the INFO level to the configured logfile. If the
<code>options.quiet</code> flag is set, flow logging is enabled at the
INFO level to the configured logfile only (i.e. no output will be sent to
the screen). If the <code>options.verbose</code> flag is set, flow
logging is enabled at the INFO level to both the screen and the
configured logfile. If the <code>options.debug</code> flag is set, flow
logging is enabled at the DEBUG level to both the screen and the
configured logfile.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>options</code></strong> (<a href="CedarBackup2.cli.Options-class.html"
class="link">Options</a> object) - Command-line options.</li>
</ul></dd>
<dt>Returns:</dt>
<dd>Path to logfile on disk.</dd>
</dl>
</td></tr></table>
</div>
<a name="_setupLogfile"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_setupLogfile</span>(<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupLogfile">source code</a></span>
</td>
</tr></table>
<p>Sets up and creates logfile as needed.</p>
<p>If the logfile already exists on disk, it will be left as-is, under
the assumption that it was created with appropriate ownership and
permissions. If the logfile does not exist on disk, it will be created as
an empty file. Ownership and permissions will remain at their defaults
unless user/group and/or mode are set in the options. We ignore errors
setting the indicated user and group.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>options</code></strong> - Command-line options.</li>
</ul></dd>
<dt>Returns:</dt>
<dd>Path to logfile on disk.</dd>
</dl>
<div class="fields"> <p><strong>Note:</strong>
This function is vulnerable to a race condition. If the log file
does not exist when the function is run, it will attempt to create
the file as safely as possible (using <code>O_CREAT</code>). If
two processes attempt to create the file at the same time, then one
of them will fail. In practice, this shouldn't really be a
problem, but it might happen occassionally if two instances of
cback run concurrently or if cback collides with logrotate or
something.
</p>
</div></td></tr></table>
</div>
<a name="_setupFlowLogging"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_setupFlowLogging</span>(<span class="sig-arg">logfile</span>,
<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupFlowLogging">source code</a></span>
</td>
</tr></table>
<p>Sets up flow logging.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>logfile</code></strong> - Path to logfile on disk.</li>
<li><strong class="pname"><code>options</code></strong> - Command-line options.</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="_setupOutputLogging"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_setupOutputLogging</span>(<span class="sig-arg">logfile</span>,
<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupOutputLogging">source code</a></span>
</td>
</tr></table>
<p>Sets up command output logging.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>logfile</code></strong> - Path to logfile on disk.</li>
<li><strong class="pname"><code>options</code></strong> - Command-line options.</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="_setupDiskFlowLogging"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_setupDiskFlowLogging</span>(<span class="sig-arg">flowLogger</span>,
<span class="sig-arg">logfile</span>,
<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupDiskFlowLogging">source code</a></span>
</td>
</tr></table>
<p>Sets up on-disk flow logging.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>flowLogger</code></strong> - Python flow logger object.</li>
<li><strong class="pname"><code>logfile</code></strong> - Path to logfile on disk.</li>
<li><strong class="pname"><code>options</code></strong> - Command-line options.</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="_setupScreenFlowLogging"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_setupScreenFlowLogging</span>(<span class="sig-arg">flowLogger</span>,
<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupScreenFlowLogging">source code</a></span>
</td>
</tr></table>
<p>Sets up on-screen flow logging.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>flowLogger</code></strong> - Python flow logger object.</li>
<li><strong class="pname"><code>options</code></strong> - Command-line options.</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="_setupDiskOutputLogging"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_setupDiskOutputLogging</span>(<span class="sig-arg">outputLogger</span>,
<span class="sig-arg">logfile</span>,
<span class="sig-arg">options</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#_setupDiskOutputLogging">source code</a></span>
</td>
</tr></table>
<p>Sets up on-disk command output logging.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>outputLogger</code></strong> - Python command output logger object.</li>
<li><strong class="pname"><code>logfile</code></strong> - Path to logfile on disk.</li>
<li><strong class="pname"><code>options</code></strong> - Command-line options.</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="setupPathResolver"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">setupPathResolver</span>(<span class="sig-arg">config</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="CedarBackup2.cli-pysrc.html#setupPathResolver">source code</a></span>
</td>
</tr></table>
<p>Set up the path resolver singleton based on configuration.</p>
<p>Cedar Backup's path resolver is implemented in terms of a singleton,
the <a href="CedarBackup2.util.PathResolverSingleton-class.html"
class="link">PathResolverSingleton</a> class. This function takes
options configuration, converts it into the dictionary form needed by the
singleton, and then initializes the singleton. After that, any function
that needs to resolve the path of a command can use the singleton.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>config</code></strong> (<a href="CedarBackup2.config.Config-class.html"
class="link">Config</a> object) - Configuration</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== VARIABLES DETAILS ==================== -->
<a name="section-VariablesDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Variables Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-VariablesDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="VALID_ACTIONS"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">VALID_ACTIONS</h3>
List of valid actions.
<dl class="fields">
</dl>
<dl class="fields">
<dt>Value:</dt>
<dd><table><tr><td><pre class="variable">
<code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">collect</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">stage</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">store</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">purge</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">rebuild</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">validate</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">initialize</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">all</code><code class="variable-quote">'</code><code class="variable-group">]</code>
</pre></td></tr></table>
</dd>
</dl>
</td></tr></table>
</div>
<a name="LONG_SWITCHES"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">LONG_SWITCHES</h3>
<dl class="fields">
</dl>
<dl class="fields">
<dt>Value:</dt>
<dd><table><tr><td><pre class="variable">
<code class="variable-group">[</code><code class="variable-quote">'</code><code class="variable-string">help</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">version</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">verbose</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">quiet</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">config=</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">full</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">managed</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-quote">'</code><code class="variable-string">managed-only</code><code class="variable-quote">'</code><code class="variable-op">,</code>
<code class="variable-ellipsis">...</code>
</pre></td></tr></table>
</dd>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="CedarBackup2-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://cedar-backup.sourceforge.net/">CedarBackup2</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Tue Oct 19 20:56:41 2010
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|