mirror of
https://github.com/pcvolkmer/docker-wireguard-boringtun.git
synced 2025-07-02 23:32:54 +00:00
Add script to remove client
This commit is contained in:
@ -8,19 +8,30 @@ fi
|
||||
|
||||
if [ ! -f "/etc/wireguard/$DEVICE.conf" ]; then
|
||||
cd /etc/wireguard
|
||||
/create-config.sh
|
||||
/scripts/create-config.sh
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "add-client" == "$1" ]; then
|
||||
cd /etc/wireguard
|
||||
/add-client.sh
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Starting wg-quick on $DEVICE"
|
||||
touch "${WG_LOG_FILE}"
|
||||
wg-quick up $DEVICE
|
||||
echo "done!"
|
||||
|
||||
tail -f "${WG_LOG_FILE}"
|
||||
case "$1" in
|
||||
'add-client')
|
||||
cd /etc/wireguard
|
||||
/scripts/add-client.sh
|
||||
exit 0
|
||||
;;
|
||||
'rm-client')
|
||||
if [ -z $2 ]; then
|
||||
echo "Usage: rm-client <client id>"
|
||||
exit 1
|
||||
fi
|
||||
cd /etc/wireguard
|
||||
/scripts/rm-client.sh $2
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
echo "Starting wg-quick on $DEVICE"
|
||||
touch "${WG_LOG_FILE}"
|
||||
wg-quick up $DEVICE
|
||||
echo "done!"
|
||||
tail -f "${WG_LOG_FILE}"
|
||||
;;
|
||||
esac
|
||||
|
Reference in New Issue
Block a user