aboutsummaryrefslogtreecommitdiffstats
path: root/testing/pass/README.alpine
diff options
context:
space:
mode:
authorStuart Cardall <developer@it-offshore.co.uk>2017-04-15 06:13:15 +0000
committerJakub Jirutka <jakub@jirutka.cz>2017-04-15 13:59:51 +0200
commita144ae653ba26ea4ff181260101356f0b0f2c108 (patch)
tree92b3fd2571112969e4bd18b06fa167177ddb7e15 /testing/pass/README.alpine
parentad4d1e0cce5ce61b96691183c1f4c5fb834585c4 (diff)
downloadaports-a144ae653ba26ea4ff181260101356f0b0f2c108.tar.bz2
aports-a144ae653ba26ea4ff181260101356f0b0f2c108.tar.xz
testing/pass: update to 1.7.1
also adds a README.alpine with instructions to make the clipboard work for root over ssh.
Diffstat (limited to 'testing/pass/README.alpine')
-rw-r--r--testing/pass/README.alpine28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/pass/README.alpine b/testing/pass/README.alpine
new file mode 100644
index 0000000000..dc5f9d05eb
--- /dev/null
+++ b/testing/pass/README.alpine
@@ -0,0 +1,28 @@
+# Alpine Linux README: Password Store #
+---------------------------------------
+
+Notes for making the clipboard work for root over ssh:
+------------------------------------------------------
+
+(1) apk add xauth xclip
+
+(2) On your LOCAL machine add to ~/.ssh/config:
+
+host xxxxxxx
+ ForwardX11 yes
+ ForwardX11Trusted yes
+
+(3) In the REMOTE USER ~/.profile add:
+
+ echo "$DISPLAY" > ~/.display
+
+(4) In the REMOTE ROOT ~/.profile add:
+
+ export DISPLAY=$(cat /home/login-user/.display)
+
+(5) file=/home/login-user/.Xauthority
+ touch $file
+ chmod 0600 $file
+ chown user:user $file
+ ln -s $file /root/.Xauthority
+