diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2005-02-01 16:49:22 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2005-02-01 16:49:22 +0000 |
commit | 933e13e590dbd0e732001a091190cdcaaad2f0c1 (patch) | |
tree | fbb48d9a17722f7a042476c03f894ccf30465f05 | |
parent | 413d2050d50aa4c50ec7f9432e040c58edf58b04 (diff) | |
download | bcfg2-933e13e590dbd0e732001a091190cdcaaad2f0c1.tar.gz bcfg2-933e13e590dbd0e732001a091190cdcaaad2f0c1.tar.bz2 bcfg2-933e13e590dbd0e732001a091190cdcaaad2f0c1.zip |
add remove option
(Logical change 1.198)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@846 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | src/sbin/bcfg2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sbin/bcfg2 b/src/sbin/bcfg2 index a29f8834c..cff87a0bb 100644 --- a/src/sbin/bcfg2 +++ b/src/sbin/bcfg2 @@ -67,7 +67,7 @@ def dgetopt(arglist, opt, vopt): if __name__ == '__main__': # parse command line options options = {'v':'verbose', 'q':'quick', 'd':'debug', 'n':'dryrun', 'B':'build', 'p':'paranoid'} - doptions = {'b':'bundle', 'f':'file', 'c':'cache', 'p':'profile', 'i':'image'} + doptions = {'b':'bundle', 'f':'file', 'c':'cache', 'p':'profile', 'i':'image', 'r':'remove'} setup = dgetopt(argv[1:], options, doptions) comm = None |