pybatmesh/naxalnet
Pranav Jerry 8d318a5b13 fixed ad-hoc device getting ip address
naxalnet no longer creates temporary directories,
since the networkd configs no longer have device
names engraved in them.
2021-05-11 11:29:38 +05:30

36 lines
827 B
Bash
Executable File

#!/usr/bin/env bash
DATADIR="$(dirname "$0")/../share/naxalnet"
NETWORKD_DIR=/run/systemd/network
SSID="Hello World"
if [[ $# != 1 ]]
then
echo "Usage: $0 {wireless device}"
echo "Example: $0 wlan0"
exit 1
fi
if [[ ! -d "$NETWORKD_DIR" ]]
then
mkdir "$NETWORKD_DIR"
fi
echo "Copying systemd-networkd config files"
# Copies all files in DATADIR to NETWORKD_DIR
find "$DATADIR" -type f -execdir cp -t "$NETWORKD_DIR" {} +
echo "Linking resolv.conf to systemd-resolved's stub-resolved.conf"
ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
echo "Starting services"
systemctl reload-or-restart iwd systemd-resolved systemd-networkd
# wait five seconds for iwd to start
#sleep 5
echo "Configuring iwd"
iwctl device "$1" set-property Mode ad-hoc
iwctl ad-hoc "$1" start_open "$SSID"
echo "Done"