#!/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"]