Replace path trigger to binding to WireGuard device
This commit is contained in:
parent
a12f4d19c3
commit
98f87c33bd
@ -13,12 +13,11 @@ echo "Copying Systemd units to system directory..."
|
||||
cp $run_directory/systemd-templates/set-ip-routes.service /storage/.config/system.d/
|
||||
sed -i -e "s/PH_DNS/$dns_server/g" /storage/.config/system.d/set-ip-routes.service
|
||||
sed -i -e "s:PH_NETWORK:$target_network:g" /storage/.config/system.d/set-ip-routes.service
|
||||
cp $run_directory/systemd-templates/set-ip-routes.path /storage/.config/system.d/
|
||||
mkdir /storage/.config/system.d/sys-subsystem-net-devices-wg0.device.d
|
||||
cp $run_directory/systemd-templates/set-ip-routes.conf /storage/.config/system.d/sys-subsystem-net-devices-wg0.device.d
|
||||
|
||||
echo "Reloading Systemd..."
|
||||
systemctl daemon-reload
|
||||
#echo "Enabling path unit (not starting it, either do it manually or reboot)..."
|
||||
#systemctl enable set-ip-routes.path
|
||||
|
||||
echo "Finished install. Exiting..."
|
||||
exit 0
|
||||
|
3
systemd-templates/set-ip-routes.conf
Normal file
3
systemd-templates/set-ip-routes.conf
Normal file
@ -0,0 +1,3 @@
|
||||
[Unit]
|
||||
BindsTo=set-ip-routes.service
|
||||
Before=set-ip-routes.service
|
@ -1,9 +0,0 @@
|
||||
[Unit]
|
||||
Description=Detect WireGuard VPN activation
|
||||
|
||||
[Path]
|
||||
PathExists=/sys/class/net/wg0/dev_id
|
||||
Unit=set-ip-routes.service
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
@ -1,5 +1,6 @@
|
||||
[Unit]
|
||||
Description=Update IP routes after connecting to VPN
|
||||
BindsTo=sys-subsystem-net-devices-wg0.device
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
|
Loading…
Reference in New Issue
Block a user