Mike Crute 4f494e3b57 community/pass: add coreutils dependency
Pass uses the tr graph character class which isn't currently supported
in Busybox tr but is supported in GNU tr. The absence of a tr with graph
character class causes tr to use the literal characters '[:graph:]'
instead of a character class which causes pass to generate very weak
passwords. Add coreutils as a dependency so pass can use a tr
implementation with the graph character class support.

Fixes #12583
2021-04-27 22:30:33 +00:00
..

# 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

(6) In the REMOTE ROOT ~/.profile add:

  # fix tty ownership for pinentry after su -
  chown root $(tty)
  export GPG_TTY=$(tty)