mirror of
https://github.com/pcvolkmer/docker-wireguard-boringtun.git
synced 2025-04-19 21:36:49 +00:00
11 lines
182 B
Bash
Executable File
11 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat "$DEVICE-client_$1.conf"
|
|
|
|
echo
|
|
echo
|
|
|
|
# Create QR-codes for clients
|
|
if [ ! -z "$(which qrencode 2>/dev/null)" ]; then
|
|
qrencode -t utf8 < "$DEVICE-client_$1.conf"
|
|
fi |