summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/core/launcher.py
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2018-03-27 19:12:39 +0200
committerKali Kaneko <kali@leap.se>2018-03-28 23:51:28 +0200
commit8462f36cdb9dbab00d5025ac6d7e4f8581951340 (patch)
tree846db6dcea3ae1e312a1cd9fd49b48fbcf39c2bd /src/leap/bitmask/core/launcher.py
parent65ae3b5349eb02f938c3987a1e91d2641b0f94bc (diff)
[feat] make autostart app name and exec path configurable
Use sys.argv[0] as exec path instead of hardcode 'bitmask', and let anonvpn be called RiseupVPN. - Resolves: bitmask-systray#19
Diffstat (limited to 'src/leap/bitmask/core/launcher.py')
-rw-r--r--src/leap/bitmask/core/launcher.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/leap/bitmask/core/launcher.py b/src/leap/bitmask/core/launcher.py
index 14d8e607..b1d5dabd 100644
--- a/src/leap/bitmask/core/launcher.py
+++ b/src/leap/bitmask/core/launcher.py
@@ -44,7 +44,7 @@ def here(module=None):
return dirname(__file__)
-def run_bitmaskd():
+def run_bitmaskd(app_name=None, exec_path=None):
# TODO --- configure where to put the logs... (get --logfile, --logdir
# from bitmaskctl
@@ -55,6 +55,9 @@ def run_bitmaskd():
flags.VERBOSE = True
if STANDALONE:
flags.VERBOSE = True
+ flags.APP_NAME = app_name
+ flags.EXEC_PATH = exec_path
+
args = [
'-y', join(here(core), "bitmaskd.tac"),
'--logfile', getLogPath(),