mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
add some comments
This commit is contained in:
parent
5c41fa0ab5
commit
e987ccd427
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ net.ipv6.conf.all.forwarding = 1" >/etc/sysctl.d/wg.conf
|
|||
|
||||
# Check if WireGuard is running
|
||||
systemctl is-active --quiet "wg-quick@${SERVER_WG_NIC}"
|
||||
WG_RUNNING=$?
|
||||
WG_RUNNING=$? # exit status of the previously run command
|
||||
|
||||
# WireGuard might not work if we updated the kernel. Tell the user to reboot
|
||||
if [[ ${WG_RUNNING} -ne 0 ]]; then
|
||||
|
@ -235,7 +235,7 @@ function newClient() {
|
|||
echo ""
|
||||
fi
|
||||
done
|
||||
|
||||
# max number of client supported
|
||||
for DOT_IP in {2..254}; do
|
||||
DOT_EXISTS=$(grep -c "${SERVER_WG_IPV4::-1}${DOT_IP}" "/etc/wireguard/${SERVER_WG_NIC}.conf")
|
||||
if [[ ${DOT_EXISTS} == '0' ]]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue