mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
13 lines
201 B
Bash
Executable file
13 lines
201 B
Bash
Executable file
#! /bin/sh
|
|
|
|
NODE=${1:-localhost}
|
|
PORT=${2:-4949}
|
|
|
|
{
|
|
for plugin in $(echo "list" | nc $NODE $PORT | tail -n 1)
|
|
do
|
|
echo "config $plugin"
|
|
echo "fetch $plugin"
|
|
done
|
|
echo "quit"
|
|
} | nc $NODE $PORT
|