diff options
author | Aaditya Dhruv <[email protected]> | 2023-09-10 13:12:57 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-09-10 13:12:57 -0500 |
commit | 2c4e604049ef625049d1fbb6ad241dffea800bea (patch) | |
tree | d05f77d7ea5d7df77277af60681673bfd77c13cf /src/system/files/systemd/sys/wireguard.service | |
parent | 58169328b1ed3b5c2d47ab917d2f9eca9548c15b (diff) |
Add system roles
System roles handle system level configuration like systemd services,
wireguard etc.
Diffstat (limited to 'src/system/files/systemd/sys/wireguard.service')
-rw-r--r-- | src/system/files/systemd/sys/wireguard.service | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/system/files/systemd/sys/wireguard.service b/src/system/files/systemd/sys/wireguard.service new file mode 100644 index 0000000..76a2968 --- /dev/null +++ b/src/system/files/systemd/sys/wireguard.service @@ -0,0 +1,14 @@ +[Unit] +Description=Wireguard +After=network-online.target +Wants=network-online.target + +[Service] +Type=oneshot +RemainAfterExit=true +User=root +ExecStart=/usr/bin/wg-quick up wg0 +ExecStop=/usr/bin/wg-quick down wg0 + +[Install] +WantedBy=multi-user.target |