mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-12-03 12:11:01 +05:30
Pranav Jerry
6fff558405
- Renamed here_be_dragons() to main(). - Added daemon.py (doesn't do anything yet). - Added GPL disclaimer to all python files and removed the shebang #! from all files. - args is now defined outside any function in scripts.py - Changed arguments of some functions in scripts.py
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
# This file is part of naxalnet.
|
|
# Copyright (C) 2021 The naxalnet Authors
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
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", "/usr/local/share/naxalnet", "/etc/naxalnet"]
|