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/cli/eip.py | |
parent | 9551ff71ce976f04e98f1c19c667bc5f9f402ae9 (diff) |
[feature] add install/uninstall command for helpers
Diffstat (limited to 'src/leap/bitmask/cli/eip.py')
-rw-r--r-- | src/leap/bitmask/cli/eip.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/cli/eip.py b/src/leap/bitmask/cli/eip.py index b7016ef..f5c9795 100644 --- a/src/leap/bitmask/cli/eip.py +++ b/src/leap/bitmask/cli/eip.py @@ -35,8 +35,10 @@ SUBCOMMANDS: status Display status about service check Check whether EIP service is properly configured get_cert Get EIP Certificate from provider - install Install helpers (need superuser) + install Install helpers (needs root) + uninstall Uninstall helpers (needs root) '''.format(name=command.appname) - commands = ['start', 'stop', 'status', 'check', 'get_cert'] + commands = ['start', 'stop', 'status', 'check', + 'get_cert', 'install', 'uninstall'] |