mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2025-01-10 00:37:49 +05:30
Reviewed-on: https://git.disroot.org/pranav/naxalnet/pulls/22
This commit is contained in:
commit
0d5d3c5cc6
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased][] - 2021-10-22
|
||||||
|
|
||||||
|
- Fixed stopping at boot when GNOME starts location service (#21)
|
||||||
|
|
||||||
## [v0.5.0][] - 2021-10-10
|
## [v0.5.0][] - 2021-10-10
|
||||||
|
|
||||||
- Better error messages
|
- Better error messages
|
||||||
|
@ -219,13 +219,6 @@ sudo systemctl enable naxalnet.service
|
|||||||
|
|
||||||
Now naxalnet will start a mesh on every boot.
|
Now naxalnet will start a mesh on every boot.
|
||||||
|
|
||||||
If you use GNOME, you should mask `wpa_supplicant.service` so that it
|
|
||||||
cannot be started by systemd. See issue #21
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo systemctl mask wpa_supplicant.service
|
|
||||||
```
|
|
||||||
|
|
||||||
If you have NetworkManager enabled, which is the default in Ubuntu and
|
If you have NetworkManager enabled, which is the default in Ubuntu and
|
||||||
Fedora, it should be disabled:
|
Fedora, it should be disabled:
|
||||||
|
|
||||||
@ -297,7 +290,7 @@ You can use the ap for connecting mobile phones and other devices
|
|||||||
to the mesh network.
|
to the mesh network.
|
||||||
|
|
||||||
Read the code and the documentation in the code to learn the details.
|
Read the code and the documentation in the code to learn the details.
|
||||||
See the directory [systemd-networkd](systemd-networkd) to see how
|
See the directory [network](network) to see how
|
||||||
systemd-networkd configures the network.
|
systemd-networkd configures the network.
|
||||||
|
|
||||||
## Use cases
|
## Use cases
|
||||||
|
@ -42,4 +42,4 @@ given below.
|
|||||||
#
|
#
|
||||||
# In case you forgot to change the version, skip the number
|
# In case you forgot to change the version, skip the number
|
||||||
# and put the next number in the next commit.
|
# and put the next number in the next commit.
|
||||||
__version__ = "0.5.0"
|
__version__ = "0.5.0a2"
|
||||||
|
@ -9,12 +9,10 @@ Wants=systemd-resolved.service
|
|||||||
After=iwd.service
|
After=iwd.service
|
||||||
After=systemd-networkd.service
|
After=systemd-networkd.service
|
||||||
After=systemd-resolved.service
|
After=systemd-resolved.service
|
||||||
# Stops NetworkManager and wpa_supplicant if already running
|
# Stops NetworkManager if already running
|
||||||
Conflicts=NetworkManager.service
|
Conflicts=NetworkManager.service
|
||||||
Conflicts=wpa_supplicant.service
|
|
||||||
# This stops networkmanager and wpa_supplicant when naxalnet is enabled
|
# This stops networkmanager and wpa_supplicant when naxalnet is enabled
|
||||||
After=NetworkManager.service
|
After=NetworkManager.service
|
||||||
After=wpa_supplicant.service
|
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=notify
|
Type=notify
|
18
setup.cfg
18
setup.cfg
@ -33,17 +33,17 @@ console_scripts =
|
|||||||
|
|
||||||
[options.data_files]
|
[options.data_files]
|
||||||
lib/systemd/system =
|
lib/systemd/system =
|
||||||
naxalnet.service
|
service/naxalnet.service
|
||||||
# If installing with pip, this file will be copied to some other place.
|
# If installing with pip, this file will be copied to some other place.
|
||||||
# This is the reason we use setup.py instead of pip in the Makefile.
|
# This is the reason we use setup.py instead of pip in the Makefile.
|
||||||
/etc/naxalnet =
|
/etc/naxalnet =
|
||||||
naxalnet.conf.example
|
naxalnet.conf.example
|
||||||
share/naxalnet/networkd =
|
share/naxalnet/networkd =
|
||||||
systemd-networkd/mesh.01-batman.netdev
|
network/mesh.01-batman.netdev
|
||||||
systemd-networkd/mesh.02-bridge.netdev
|
network/mesh.02-bridge.netdev
|
||||||
systemd-networkd/mesh.03-wireless-ad-hoc.network
|
network/mesh.03-wireless-ad-hoc.network
|
||||||
systemd-networkd/mesh.04-batman.network
|
network/mesh.04-batman.network
|
||||||
systemd-networkd/mesh.05-wireless-ap.network
|
network/mesh.05-wireless-ap.network
|
||||||
systemd-networkd/mesh.06-eth.network
|
network/mesh.06-eth.network
|
||||||
systemd-networkd/mesh.07-bridge.network
|
network/mesh.07-bridge.network
|
||||||
systemd-networkd/tmp.01-eth.network
|
network/tmp.01-eth.network
|
||||||
|
Loading…
x
Reference in New Issue
Block a user