Last active
August 16, 2024 09:34
-
-
Save ricsiga/22f25e1d1673e35d0c8f6b1930341cb8 to your computer and use it in GitHub Desktop.
install Netdata with Ansible
This file contains 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
#!/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