mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
65f3dab4c6
Also fix a bugs found while adding the tests, oops. Signed-off-by: David Anderson <danderson@tailscale.com>
9 lines
245 B
Bash
9 lines
245 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# This is a fake tailscale CLI (and also iptables and ip6tables) that
|
|
# records its arguments and exits successfully.
|
|
#
|
|
# It is used by main_test.go to test the behavior of containerboot.
|
|
|
|
echo $0 $@ >>$TS_TEST_RECORD_ARGS
|