tests: add wg-quick stub; fix wg with no args
This commit is contained in:
parent
3afa581cb7
commit
af4984f1b1
3
tests/wg
3
tests/wg
|
@ -1,6 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "nothing to see here"
|
||||||
|
;;
|
||||||
genkey)
|
genkey)
|
||||||
echo "ILICZ3yBMCGAWNIq5Pn0bewBVimW3Q2yRVJ/Be+b1Uc="
|
echo "ILICZ3yBMCGAWNIq5Pn0bewBVimW3Q2yRVJ/Be+b1Uc="
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
up)
|
||||||
|
echo "up $2"
|
||||||
|
;;
|
||||||
|
pubkey)
|
||||||
|
echo "down $2"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "what?"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
Reference in New Issue