Created
September 17, 2019 08:39
-
-
Save bolerap/b889924dd70241156a4c4ec572acfbb6 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
sudo apt -y update && sudo apt upgrade -y && \ | |
sudo apt -y install apt-transport-https ca-certificates wget gnupg && \ | |
wget -q -O - "https://repos.ripple.com/repos/api/gpg/key/public" | \ | |
sudo apt-key add - && \ | |
echo "deb https://repos.ripple.com/repos/rippled-deb bionic stable" | \ | |
sudo tee -a /etc/apt/sources.list.d/ripple.list && \ | |
sudo apt -y update && sudo apt -y install rippled && systemctl status rippled.service && \ | |
sudo systemctl start rippled.service && sudo systemctl enable rippled.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment