blob: 719fc5e95001424ce64eacfd29ee29ee96fb29f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
from os import remove, chmod
from shutil import copyfile
import os.path
import sys
from leap.bitmask.vpn.constants import IS_LINUX, IS_MAC
from leap.bitmask.vpn import _config
from leap.bitmask.util import STANDALONE
if IS_LINUX:
helper_to = '/usr/local/sbin/bitmask-root'
polkit_to = '/usr/share/polkit-1/actions/se.bitmask.bundle.policy'
openvpn_to = '/usr/local/sbin/leap-openvpn'
def install():
helper_from = _config.get_bitmask_helper_path()
polkit_from = _config.get_bitmask_polkit_policy_path()
openvpn_from = _config.get_bitmask_openvpn_path()
copyfile(helper_from, helper_to)
chmod(helper_to, 0744)
copyfile(polkit_from, polkit_to)
if STANDALONE:
copyfile(openvpn_from, openvpn_to)
chmod(openvpn_to, 0700)
def uninstall():
remove(helper_to)
remove(polkit_to)
def check():
helper = os.path.exists(helper_to)
polkit = os.path.exists(polkit_to)
return helper and polkit
if IS_MAC:
def check():
# XXX check if bitmask-helper is running
return True
def main():
if sys.argv[-1] == 'install':
install()
if sys.argv[-1] == 'uninstall':
uninstall()
if __name__ == "__main__":
main()
|