mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2025-01-09 16:27:53 +05:30
Pranav Jerry
d7a9edc1e8
* Improved docstrings, README * Added argument --version and its implementation * Added "uninstall" rule to Makefile and added it in the README * Updated CHANGELOG * Cleaned up code I've probably forgot something so we can't merge to master yet. And we still have to add installation instructions for ubuntu and fedora
27 lines
716 B
Python
27 lines
716 B
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
default.py
|
|
----------
|
|
|
|
This file contains default values for configuration.
|
|
This is taken as fallback data by config.py if no
|
|
configuration files were found, or if a key-value pair
|
|
was not present in the config file. The data will be
|
|
further changed by arguments if naxalnet is called
|
|
from the commandline. See config.py for more info.
|
|
"""
|
|
|
|
CONFIG = {
|
|
"networkd": {
|
|
"confdir": "/usr/share/naxalnet/networkd",
|
|
"runtimedir": "/run/systemd/network",
|
|
},
|
|
"adhoc": {"name": "NxMesh"},
|
|
"ap": {"ssid": "MeshWiFi", "passwd": "naxalnet256"},
|
|
}
|
|
|
|
# glob
|
|
CONFIG_FILES = ["naxalnet.conf", "naxalnet.conf.d/*.conf"]
|
|
CONFIG_DIRS = ["/usr/share/naxalnet", "/etc/naxalnet"]
|