distribution/packages/network/wireguard-tools/autostart/098-wireguard
2023-04-01 12:23:19 +00:00

10 lines
247 B
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present kkoshelev (https://github.com/kkoshelev)
. /etc/profile
if [ "$(get_setting wireguard.up)" == "1" ]
then
nohup wg-quick up /storage/.config/wireguard/wg0.conf &
fi