mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
307 B

  1. if [ "$prefix_auto" = 1 ] ; then
  2. prefix="/opt/nagios"
  3. set_confopt
  4. fi
  5. nagios_postm() {
  6. echo "xsrctar is $xsrctar"
  7. if [[ $xsrctar != *nagios-plugins* ]]; then
  8. make $makeopt fullinstall
  9. make $makeopt install-config
  10. fi
  11. }
  12. hook_add inmake 3 "make $makeopt all"
  13. hook_add postmake 3 "nagios_postm"