mirror of
https://github.com/gryf/wicd.git
synced 2025-12-20 12:58:07 +01:00
73 lines
1.8 KiB
Python
Executable File
73 lines
1.8 KiB
Python
Executable File
""" Path configuration and functions for the wicd daemon and gui clients.
|
|
|
|
chdir() -- Change directory to the location of the current file.
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
# The path containing the wpath.py file.
|
|
current = os.path.dirname(os.path.realpath(__file__)) + '/'
|
|
|
|
# These paths can easily be modified to handle system wide installs, or
|
|
# they can be left as is if all files remain with the source directory
|
|
# layout.
|
|
|
|
# These paths are replaced when setup.py configure is run
|
|
|
|
# All directory paths *MUST* end in a /
|
|
|
|
# DIRECTORIES
|
|
|
|
lib = '/usr/lib/wicd/'
|
|
share = '/usr/share/wicd/'
|
|
etc = '/etc/wicd/'
|
|
images = '/usr/share/pixmaps/wicd/'
|
|
encryption = '/etc/wicd/encryption/templates/'
|
|
bin = '/usr/bin/'
|
|
networks = '/var/lib/wicd/configurations/'
|
|
log = '/var/log/wicd/'
|
|
resume = '/etc/acpi/resume.d/'
|
|
suspend = '/etc/acpi/suspend.d/'
|
|
sbin = '/usr/sbin/'
|
|
pmutils = '/usr/lib/pm-utils/sleep.d/'
|
|
dbus = '/etc/dbus-1/system.d/'
|
|
desktop = '/usr/share/applications/'
|
|
backends= '/usr/lib/wicd/backends/'
|
|
translations = '/usr/share/locale/'
|
|
icons = '/usr/share/icons/hicolor/'
|
|
autostart = '/etc/xdg/autostart/'
|
|
init = '/etc/init.d/'
|
|
docdir = '/usr/share/doc/wicd/'
|
|
mandir = '/usr/share/man/'
|
|
kdedir = '/usr/share/autostart/'
|
|
|
|
# FILES
|
|
|
|
# python begins the file section
|
|
python = '/usr/bin/python'
|
|
pidfile = '/var/run/wicd/wicd.pid'
|
|
# stores something like other/wicd
|
|
# really only used in the install
|
|
initfile = 'init/debian/wicd'
|
|
# stores only the file name, i.e. wicd
|
|
initfilename = 'wicd'
|
|
|
|
# BOOLEANS
|
|
no_install_pmutils = False
|
|
no_install_init = False
|
|
no_install_man = False
|
|
no_install_kde = False
|
|
no_install_acpi = False
|
|
no_install_docs = False
|
|
|
|
def chdir(file):
|
|
"""Change directory to the location of the specified file.
|
|
|
|
Keyword arguments:
|
|
file -- the file to switch to (usually __file__)
|
|
|
|
"""
|
|
os.chdir(os.path.dirname(os.path.realpath(file)))
|
|
|