21 lines
378 B
Bash
Executable file
21 lines
378 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Edité par mo² le 26 juillet 2004
|
|
#
|
|
|
|
if [ "$1" = "autoconf" ]; then
|
|
echo yes
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" = "config" ]; then
|
|
|
|
echo 'graph_title Uptime'
|
|
echo 'graph_args --base 1000 -l 0 '
|
|
echo 'graph_vlabel uptime in days'
|
|
echo 'uptime.label uptime'
|
|
echo 'uptime.draw AREA'
|
|
exit 0
|
|
fi
|
|
|
|
cat /proc/uptime | env LC_ALL=C awk '{printf "uptime.value %.2f\n",$1/86400}'
|