summaryrefslogtreecommitdiffstats
path: root/func/overlord/func_command.py
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2007-10-12 14:33:28 -0400
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2007-10-12 14:33:28 -0400
commitb4b771c5aced0739eb7a875bf126d21dbdaff06b (patch)
tree7394a791d31e98b79f3be121976f90c9cdf59701 /func/overlord/func_command.py
parent7e20169c94df803759acb82f6813dc1a297b9fde (diff)
downloadthird_party-func-b4b771c5aced0739eb7a875bf126d21dbdaff06b.tar.gz
third_party-func-b4b771c5aced0739eb7a875bf126d21dbdaff06b.tar.xz
third_party-func-b4b771c5aced0739eb7a875bf126d21dbdaff06b.zip
copyfile.py: dont need the parse call here
command.py: move the parse args stuff to before we call subcommands func_command.py: include the copyfile classes so we can use them
Diffstat (limited to 'func/overlord/func_command.py')
-rw-r--r--func/overlord/func_command.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/func/overlord/func_command.py b/func/overlord/func_command.py
index 2210334..87c3e09 100644
--- a/func/overlord/func_command.py
+++ b/func/overlord/func_command.py
@@ -9,6 +9,7 @@ import command
#FIXME: need a plug-in runtime module loader here
from cmd_modules import call
from cmd_modules import show
+from cmd_modules import copyfile
from func.overlord import client
@@ -16,7 +17,8 @@ class FuncCommandLine(command.Command):
name = "client"
useage = "func is the commandline interface to a func minion"
- subCommandClasses = [call.Call,show.Show]
+ subCommandClasses = [call.Call, show.Show,
+ copyfile.CopyFile]
def __init__(self):