Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / plugins / other / pid @ 7da1b039

Historique | Voir | Annoter | Télécharger (320 octets)

1 4ee944dc L.Schmidt
#!/bin/bash
2
3
#%# family=manual
4
#%# capabilities=autoconf
5
6
STYLE=LINE2
7
GRAPH="pid"
8
SECTION="system"
9
10
run_autoconf() {
11
	echo yes 
12
}
13
14
run_config() {
15
cat << EOF
16
graph_title ${GRAPH}
17
graph_category ${SECTION}
18
graph_vlabel pid
19
pid.label pid
20
pid.draw LINE2
21
pid.min 0
22
pid.info pid
23
EOF
24
}
25
26
run_()  {
27
echo "pid.value $$"
28
}
29
30
run_$1