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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/func/overlord/func_command.py b/func/overlord/func_command.py
index b33565c..1a13233 100644
--- a/func/overlord/func_command.py
+++ b/func/overlord/func_command.py
@@ -11,6 +11,7 @@ from cmd_modules import call
from cmd_modules import show
from cmd_modules import copyfile
from cmd_modules import listminions
+from cmd_modules import ping
from func.overlord import client
@@ -19,7 +20,7 @@ class FuncCommandLine(command.Command):
useage = "func is the commandline interface to a func minion"
subCommandClasses = [call.Call, show.Show,
- copyfile.CopyFile, listminions.ListMinions]
+ copyfile.CopyFile, listminions.ListMinions, ping.Ping]
def __init__(self):