Skip to content

Instantly share code, notes, and snippets.

@bolerap
Created September 17, 2019 08:39
Show Gist options
  • Save bolerap/b889924dd70241156a4c4ec572acfbb6 to your computer and use it in GitHub Desktop.
Save bolerap/b889924dd70241156a4c4ec572acfbb6 to your computer and use it in GitHub Desktop.
#!/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