summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/cli
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2017-02-01 18:35:15 +0100
committerKali Kaneko (leap communications) <kali@leap.se>2017-02-23 00:40:35 +0100
commit5103c1c46dadb15af0327c8069d4c321f4f93d4f (patch)
tree47e9745eab148a840c3ebbcc57e17bb9c139aeeb /src/leap/bitmask/cli
parent9551ff71ce976f04e98f1c19c667bc5f9f402ae9 (diff)
[feature] add install/uninstall command for helpers
Diffstat (limited to 'src/leap/bitmask/cli')
-rw-r--r--src/leap/bitmask/cli/eip.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/cli/eip.py b/src/leap/bitmask/cli/eip.py
index b7016ef8..f5c97955 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']