Created
February 9, 2023 22:21
-
-
Save moismailzai/ee2a2daab8dc32debdcbc2afc8d6d876 to your computer and use it in GitHub Desktop.
systemd unit to run the wireguard jail as a service. see notes at the bottom.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# forked from https://etherarp.net/network-isolation-of-services-with-systemd/index.html | |
# ln -s /path/to/this/file /usr/lib/systemd/system/netns-proton.service | |
[Unit] | |
After=zfs-mount.service | |
Description=Named network namespace "proton" | |
StopWhenUnneeded=true | |
[Service] | |
Type=oneshot | |
RemainAfterExit=yes | |
# run the wgjail script to create the wireguard interface | |
ExecStart=/tank/opt/nas1-config/scripts/wgjailr up | |
# remove the named network namespace | |
ExecStop=/tank/opt/nas1-config/scripts/wgjailr down | |
# once this is in place, we can: | |
# 1) a) sudo systemctl edit qbittorrent-nox | |
# b) sudo systemctl edit xteve | |
# 2) add the following: | |
# [Unit] | |
# After=netns-proton.service | |
# Requires=netns-proton.service | |
# [Service] | |
# NetworkNamespacePath=/var/run/netns/proton |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment