Skip to content

Instantly share code, notes, and snippets.

View calebjonasson's full-sized avatar
🤙

Caleb Jonasson calebjonasson

🤙
View GitHub Profile
@calebjonasson
calebjonasson / debian_amd64_promtail_install.sh
Last active May 21, 2023 18:30 — forked from candoom/promtail_on_proxmox.txt
Howto install Promtail on Proxmox
#!/usr/bin/bash
# Promtail on proxmox.
# [Fork from candoom](https://gist.github.com/candoom/c540300bcde25c3e0d796b085f0417f4)
echo 'downloading latest promtail-linux-amd64 from github.'
wget https://github.com/grafana/loki/releases/latest/download/promtail-linux-amd64.zip
if ! command -v unzip promtail-linux-amd64.zip -d /usr/local/bin/ &> /dev/null;
then