summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Anderson2020-02-05 16:43:03 -0800
committerDavid Anderson2020-02-05 16:44:03 -0800
commit3317a02dd072f3621cfe5c609cd7e0c74885dd03 (patch)
tree3385d9c2361b1bf12765ba4045303172e1ef4e30
parent6576f730450dccb687779ca2d131094ca6b72db7 (diff)
downloadaur-3317a02dd072f3621cfe5c609cd7e0c74885dd03.tar.gz
Point users to the setup documentation for Arch.
-rw-r--r--PKGBUILD3
-rwxr-xr-xtailscale.install12
2 files changed, 14 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 16a69aadc944..d628dcadbd5f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname="tailscale"
_version="0.94-236"
pkgver="0.94_236"
-pkgrel="1"
+pkgrel="2"
pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they are."
arch=("x86_64")
url="https://tailscale.com"
@@ -14,6 +14,7 @@ makedepends=("rpmextract")
source=("$pkgname-$pkgver.rpm::https://tailscale.com/files/dist/tailscale-relay-$_version.$arch.rpm")
sha256sums=('b8e7505debba715f1a7c444715fbbbca5a6e3dd6515f35756006fa0daab3b9ea')
noextract=("$pkgname-$pkgver.rpm")
+install="tailscale.install"
prepare() {
mkdir -p "$pkgname-$pkgver"
diff --git a/tailscale.install b/tailscale.install
new file mode 100755
index 000000000000..c51babfa6fe7
--- /dev/null
+++ b/tailscale.install
@@ -0,0 +1,12 @@
+# -*- mode: shell-script -*-
+
+post_install() {
+ echo -e "\n\e[1m Tailscale $1\e[0m\n"
+ cat <<EOF
+Tailscale requires some additional setup steps before the service can
+start! Please follow the instructions at:
+
+ https://tailscale.com/kb/1036/install-arch
+
+EOF
+}