diff options
author | jim-p <jimp@pfsense.org> | 2012-07-02 19:30:12 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-07-02 19:30:12 -0400 |
commit | 46416258bf85d6adac5b31da9af01f43eb3ca35d (patch) | |
tree | 0a93c138eb1e574ca91db28f34a49bfb2fd2fb8d /config/quagga_ospfd/quaggactl | |
parent | 8004b79d329f26574c10e20251db436917d33614 (diff) | |
download | pfsense-packages-46416258bf85d6adac5b31da9af01f43eb3ca35d.tar.gz pfsense-packages-46416258bf85d6adac5b31da9af01f43eb3ca35d.tar.bz2 pfsense-packages-46416258bf85d6adac5b31da9af01f43eb3ca35d.zip |
Reject a password containing a single quote (it does weird things in the pkg code), also do not try to query the zebra or ospfd daemon if they are not running.
Diffstat (limited to 'config/quagga_ospfd/quaggactl')
-rw-r--r-- | config/quagga_ospfd/quaggactl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/quagga_ospfd/quaggactl b/config/quagga_ospfd/quaggactl index f370b425..6db7232e 100644 --- a/config/quagga_ospfd/quaggactl +++ b/config/quagga_ospfd/quaggactl @@ -28,6 +28,10 @@ restart) $RC_SCRIPT restart ;; zebra) + if [ "`pgrep zebra`" = "" ]; then + echo "zebra does not appear to be running" + exit 1 + fi case $2 in cpu*) daemon_command ${ZEBRA_PORT} ${ZEBRA_PASSWORD} "show thread cpu" @@ -43,7 +47,11 @@ zebra) daemon_command ${ZEBRA_PORT} ${ZEBRA_PASSWORD} "show ip route" ;; esac ;; -ospf) +ospf*) + if [ "`pgrep ospfd`" = "" ]; then + echo "ospfd does not appear to be running" + exit 1 + fi case $2 in cpu*) daemon_command ${OSPF_PORT} ${OSPF_PASSWORD} "show thread cpu" |