Skip to content

WireGuard-Ligase v1.5.1

Latest
Compare
Choose a tag to compare
@SirToffski SirToffski released this 28 Jan 15:51
· 12 commits to master since this release

Reverted a commit which changed the loop from

for i in $(seq 1 "$number_of_clients"); do
....
done

to

 while read -r i; do
...
done < <(seq 1 "$number_of_clients")