mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-12-04 12:39:14 +05:30
20 lines
463 B
Python
20 lines
463 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
"""
|
||
|
This file contains default values for configuration.
|
||
|
The values are likely to be replaced by other configuration files.
|
||
|
"""
|
||
|
|
||
|
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.d/*.conf"]
|
||
|
CONFIG_DIRS = ["/etc"]
|