Subversion Repositories vnag

Rev

Rev 72 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * VNag - Nagios Framework for PHP
  5.  * Developed by Daniel Marschall, ViaThinkSoft <www.viathinksoft.com>
  6.  * Licensed under the terms of the Apache 2.0 license
  7.  *
  8.  * Revision 2018-07-15
  9.  */
  10.  
  11. declare(ticks=1);
  12.  
  13. require_once __DIR__ . '/../../framework/vnag_framework.inc.php';
  14. require_once __DIR__.'/MdStatCheck.class.php';
  15.  
  16. $job = new MdStatCheck();
  17. $job->run();
  18. unset($job);
  19.