diff options
author | Adrian Likins <alikins@redhat.com> | 2008-03-28 17:06:10 -0400 |
---|---|---|
committer | Adrian Likins <alikins@redhat.com> | 2008-03-28 17:06:10 -0400 |
commit | bf3dd19ae0644107116fe690fa86333b20021f76 (patch) | |
tree | 35b064d8b95afa65325b7bd8f8a1dc12d92d6b6f /func/overlord/cmd_modules/check.py | |
parent | b2d8973c777e0c00192aeaa7e0a02b21675ba132 (diff) | |
download | func-bf3dd19ae0644107116fe690fa86333b20021f76.tar.gz func-bf3dd19ae0644107116fe690fa86333b20021f76.tar.xz func-bf3dd19ae0644107116fe690fa86333b20021f76.zip |
move command.py:BaseCommand() to it's own module, base_command.py
update the cmd_modules/* classes accordingly
also cleanup some imports in the cmd_modules/* classes
Diffstat (limited to 'func/overlord/cmd_modules/check.py')
-rw-r--r-- | func/overlord/cmd_modules/check.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/func/overlord/cmd_modules/check.py b/func/overlord/cmd_modules/check.py index 93f5523..18bcd52 100644 --- a/func/overlord/cmd_modules/check.py +++ b/func/overlord/cmd_modules/check.py @@ -18,15 +18,14 @@ import optparse import os import urllib2 -from func.overlord import command -from func.overlord import client +from func.overlord import base_command from func import utils from func.minion import sub_process from func.config import read_config from certmaster.commonconfig import MinionConfig -class CheckAction(client.command.BaseCommand): +class CheckAction(base_command.BaseCommand): name = "check" usage = "check func for possible setup problems" |