# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/tailscale/tailscale.conf # Copyright (C) 2025 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 # --- T2-COPYRIGHT-END --- hook_add preconf 5 'rm -rf ./cmd/tsshd/' var_append goconfopt ' ' '-o bin/ ./cmd/*' hook_add postmake 5 tailscale_postmake tailscale_postmake() { for x in bin/*; do cmd="${x##*/}" [[ "$cmd" != "tailscale"* ]] && cmd="${pkg}-${cmd}" cp -v $x $root$bindir/${cmd} done }