summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2008-01-28 14:38:10 -0500
committerJohn Eckersberg <jeckersb@redhat.com>2008-01-28 14:38:10 -0500
commit2d42d1edce955315a1eca4e48de019501fa416b3 (patch)
tree02ac89942becd20d0c3791626073e88de89e073b /func
parentdbb7e829b1be5aeef9a95d214b59a492e5b16a59 (diff)
downloadthird_party-func-2d42d1edce955315a1eca4e48de019501fa416b3.tar.gz
third_party-func-2d42d1edce955315a1eca4e48de019501fa416b3.tar.xz
third_party-func-2d42d1edce955315a1eca4e48de019501fa416b3.zip
pull NetappNotImplementedError now that I'm not doing hacks to stuff multiple commands under a single function
Diffstat (limited to 'func')
-rw-r--r--func/minion/modules/netapp/common.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/func/minion/modules/netapp/common.py b/func/minion/modules/netapp/common.py
index de35060..949af14 100644
--- a/func/minion/modules/netapp/common.py
+++ b/func/minion/modules/netapp/common.py
@@ -6,7 +6,6 @@ SSH_USER = 'root'
class GenericSSHError(Exception): pass
class NetappCommandError(Exception): pass
class NetappMissingParam(Exception): pass
-class NetappNotImplementedError(Exception): pass
def ssh(host, cmdargs, input=None, user=SSH_USER):
cmdline = [SSH, "-o forwardagent=no", "%s@%s" % (user, host)]