summaryrefslogtreecommitdiffstats
path: root/func/overlord/func_command.py
diff options
context:
space:
mode:
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):