From b4b771c5aced0739eb7a875bf126d21dbdaff06b Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Fri, 12 Oct 2007 14:33:28 -0400 Subject: 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 --- func/overlord/func_command.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'func/overlord/func_command.py') 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): -- cgit