Skip to content

Instantly share code, notes, and snippets.

@phone
Created May 15, 2015 18:21
Show Gist options
  • Save phone/8c4f1209e207e331eba3 to your computer and use it in GitHub Desktop.
Save phone/8c4f1209e207e331eba3 to your computer and use it in GitHub Desktop.
munin registration server
#!/bin/bash
netcat -lk 4747 | {
while read addr;
do
echo -e "[$addr]\n address $addr\n" >> /etc/munin/munin.conf;
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment