mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-04-05 06:06:19 +00:00
10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
set -e
|
|
|
|
# Generates 10 WireGuard keypairs for use in Dev/Test environments.
|
|
repeat 10 {
|
|
key=$(wg genkey | tee >(wg pubkey))
|
|
parts=("${(f)key}")
|
|
echo $parts
|
|
}
|