diff options
author | Kali Kaneko <kali@leap.se> | 2013-09-10 19:13:15 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-09-10 21:11:52 +0200 |
commit | 9ff57c8046ed012e907e623188329728eaef267b (patch) | |
tree | 3f29362ec56acad8bfd7624018e3560aac860c5f | |
parent | e53894257a8f73ae66836468f140eeb3393ad35e (diff) |
do not try to install globally.
-rw-r--r-- | changes/bug_3803-do-not-install-resolv-update-globally | 1 | ||||
-rwxr-xr-x | setup.py | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/changes/bug_3803-do-not-install-resolv-update-globally b/changes/bug_3803-do-not-install-resolv-update-globally new file mode 100644 index 00000000..f6e06d5f --- /dev/null +++ b/changes/bug_3803-do-not-install-resolv-update-globally @@ -0,0 +1 @@ + o Do not try to install resolv-update globally. Closes: #3803 @@ -135,17 +135,17 @@ import platform _system = platform.system() IS_LINUX = True if _system == "Linux" else False +data_files = [] + if IS_LINUX: + # XXX use check_for_permissions to install data + # globally. See #3805 data_files = [ - # ("share/man/man1", - # ["docs/man/bitmask.1"]), ("share/polkit-1/actions", ["pkg/linux/polkit/net.openvpn.gui.leap.policy"]), - ("/etc/leap/", + ("etc/leap/", ["pkg/linux/resolv-update"]), ] -else: - data_files = [] setup( name="leap.bitmask", |