9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
case $1 in
|
|
config)
|
|
curl --fail -s http://localhost:8080/muninconfig
|
|
exit $?;;
|
|
esac
|
|
|
|
curl --fail -s http://localhost:8080/munin
|