mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
57bbafde84
relaynode itself is not long for this world, deprecated in favour of tailscale/tailscaled. But now that the control server supports central distribution of packet filters, let's actually take advantage of it in a final, backward compatible release of relaynode.
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
# Generate a directory tree suitable for forming a tarball of
|
|
# this package.
|
|
exec >&2
|
|
dir=${1%/*}
|
|
outdir=$PWD/${1%.dir}
|
|
rm -rf "$outdir"
|
|
mkdir "$outdir"
|
|
touch $outdir/.stamp
|
|
sfiles="
|
|
tailscale-login
|
|
debian/*.service
|
|
*.defaults
|
|
"
|
|
ofiles="
|
|
relaynode
|
|
../taillogin/taillogin
|
|
"
|
|
redo-ifchange "$outdir/.stamp"
|
|
(cd "$S/$dir" && redo-ifchange $sfiles && cp $sfiles "$outdir/")
|
|
(cd "$dir" && redo-ifchange $ofiles && cp $ofiles "$outdir/")
|