Created
November 19, 2018 16:34
-
-
Save m-rey/b7d2e729d8e31c90406f7f37e31f9b6a to your computer and use it in GitHub Desktop.
Install keybase on openSUSE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# taken from Matthew S. Dippel's blog: | |
# http://matthewdippel.blogspot.com/2018/10/howto-install-keybase-on-opensuse.html | |
# import package signature | |
TMFILE="$(mktemp)" | |
curl https://keybase.io/docs/server_security/code_signing_key.asc > "$TMFILE" | |
sudo rpm --import "$TMFILE" | |
rm "$TMFILE" | |
# install keybase | |
sudo zypper in -y https://prerelease.keybase.io/keybase_amd64.rpm | |
# run keybase | |
run_keybase | |
# add keybase repo for updates. Beware, it's unsigned but needed. | |
sudo zypper ar -f http://prerelease.keybase.io/rpm/x86_64 keybase | |
sudo zypper --gpg-auto-import-keys refresh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment