diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2007-01-08 21:54:14 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2007-01-08 21:54:14 +0000 |
commit | b53f3ecdeca20740c974bd7cbf29ce7498dffd8f (patch) | |
tree | fc6e7cf4e4f13d4c9c1041c84ee4163fa25c1c57 /src/lib/Client/Frame.py | |
parent | c1aa7f13c53c6093c72dc968aa0818c8bba9265b (diff) | |
download | bcfg2-b53f3ecdeca20740c974bd7cbf29ce7498dffd8f.tar.gz bcfg2-b53f3ecdeca20740c974bd7cbf29ce7498dffd8f.tar.bz2 bcfg2-b53f3ecdeca20740c974bd7cbf29ce7498dffd8f.zip |
Two client updates
- add default toolset support for debian
- Add support for clearing maintenance modes in smf
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2632 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client/Frame.py')
-rw-r--r-- | src/lib/Client/Frame.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py index 16fa3e11a..d6424b603 100644 --- a/src/lib/Client/Frame.py +++ b/src/lib/Client/Frame.py @@ -15,7 +15,8 @@ def promptFilter(prompt, entries): continue return ret -toolset_defs = {'rh': {'Service':'chkconfig', 'Package':'rpm'}} +toolset_defs = {'rh': {'Service':'chkconfig', 'Package':'rpm'}, + 'debian': {'Service':'deb', 'Package':'deb'}} class Frame: '''Frame is the container for all Tool objects and state information''' |