1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

profiling: remove ext to dump_node

This commit is contained in:
Steve Schnepp 2013-02-27 10:05:52 +01:00
parent 97fdf4b33b
commit 4bb73b59c2

View file

@ -1,13 +0,0 @@
#! /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