#!/bin/bash if [[ $1 == "config" ]]; then cat << 'EOC' graph_title Dummy env plugin graph_args --base 1000 -l 0 graph_vlabel dummy / ${graph_period} graph_info This graph is buggy... It returns the environment variables it has been launched with. dummy.label dummy dummy.type DERIVE dummy.min 0 dummy.max 100000 dummy.info The number of dummy per second. EOC else exec env fi