Skip to content

Instantly share code, notes, and snippets.

@danimbrogno
Last active March 5, 2024 14:03
Show Gist options
  • Save danimbrogno/b55917f54063c32a63fbb11bd3f5b48a to your computer and use it in GitHub Desktop.
Save danimbrogno/b55917f54063c32a63fbb11bd3f5b48a to your computer and use it in GitHub Desktop.
Quilibrium Convenience Scripts
#! /bin/bash
# Launch node monitoring.
# Remember to `chmod u+x` then run ./monitor.sh
sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat
#! /bin/bash
# Update quilibrium node
# Remember to `chmod u+x` then run ./update.sh
service ceremonyclient stop
cd ~/ceremonyclient
git fetch origin
git merge origin
cd ~/ceremonyclient/node
GOEXPERIMENT=arenas go clean -v -n -a ./...
rm /root/go/bin/node
GOEXPERIMENT=arenas go install ./...
service ceremonyclient start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment