diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-01 18:35:15 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-23 00:40:35 +0100 |
commit | 5103c1c46dadb15af0327c8069d4c321f4f93d4f (patch) | |
tree | 47e9745eab148a840c3ebbcc57e17bb9c139aeeb /src/leap/bitmask/core | |
parent | 9551ff71ce976f04e98f1c19c667bc5f9f402ae9 (diff) |
[feature] add install/uninstall command for helpers
Diffstat (limited to 'src/leap/bitmask/core')
-rw-r--r-- | src/leap/bitmask/core/dispatcher.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/leap/bitmask/core/dispatcher.py b/src/leap/bitmask/core/dispatcher.py index a93c3ec5..36ae1b28 100644 --- a/src/leap/bitmask/core/dispatcher.py +++ b/src/leap/bitmask/core/dispatcher.py @@ -224,6 +224,16 @@ class EIPCmd(SubCommand): d = eip.do_get_cert(provider) return d + @register_method('install') + def do_INSTALL(self, eip, *parts): + d = eip.do_install() + return d + + @register_method('install') + def do_UNINSTALL(self, eip, *parts): + d = eip.do_uninstall() + return d + class MailCmd(SubCommand): |