Skip to content

Instantly share code, notes, and snippets.

@ricsiga
Last active August 16, 2024 09:34
Show Gist options
  • Save ricsiga/22f25e1d1673e35d0c8f6b1930341cb8 to your computer and use it in GitHub Desktop.
Save ricsiga/22f25e1d1673e35d0c8f6b1930341cb8 to your computer and use it in GitHub Desktop.
install Netdata with Ansible
#!/usr/bin/env bash
ansible -s -i inventoryFile -m shell -a "curl -Ss -o kickstart-static64.sh https://my-netdata.io/kickstart-static64.sh" all
ansible -s -i inventoryFile -m shell -a "chmod 750 kickstart-static64.sh" all
ansible -s -i inventoryFile -m shell -a "./kickstart-static64.sh --non-interactive" all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment