mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25: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.
41 lines
959 B
RPMSpec
41 lines
959 B
RPMSpec
Name: tailscale-relay
|
|
Version: 0.00
|
|
Release: 0
|
|
Summary: Traffic relay node for Tailscale
|
|
Group: Network
|
|
License: Proprietary
|
|
URL: https://tailscale.com/
|
|
Vendor: Tailscale Inc.
|
|
#Source: https://github.com/tailscale/tailscale
|
|
Source0: tailscale-relay.tar.gz
|
|
#Prefix: %{_prefix}
|
|
Packager: Avery Pennarun <apenwarr@tailscale.com>
|
|
BuildRoot: %{_tmppath}/%{name}-root
|
|
|
|
%description
|
|
Traffic relay node for Tailscale.
|
|
|
|
%prep
|
|
%setup -n tailscale-relay
|
|
|
|
%build
|
|
|
|
%install
|
|
D=$RPM_BUILD_ROOT
|
|
[ "$D" = "/" -o -z "$D" ] && exit 99
|
|
rm -rf "$D"
|
|
mkdir -p $D/usr/sbin $D/lib/systemd/system $D/etc/default $D/etc/tailscale
|
|
cp taillogin tailscale-login relaynode $D/usr/sbin
|
|
cp tailscale-relay.service $D/lib/systemd/system/
|
|
cp tailscale-relay.defaults $D/etc/default/tailscale-relay
|
|
|
|
%clean
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%config(noreplace) /etc/default/tailscale-relay
|
|
/lib/systemd/system/tailscale-relay.service
|
|
/usr/sbin/taillogin
|
|
/usr/sbin/tailscale-login
|
|
/usr/sbin/relaynode
|