Last active
July 22, 2022 11:10
-
-
Save alecs/66e395c886133926732e26cd35e67d56 to your computer and use it in GitHub Desktop.
add-sqlite3-to-grafana-var-lib
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/bash | |
cd /var/lib/grafana/; mkdir sqtemp; apk fetch sqlite; tar -C sqtemp/ -xzf sqlite-*.apk ; mv sqtemp/usr/bin/sqlite3 sqlite3; rm -rf sqtemp sqlite-*.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment