mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
223 B
PHP
16 lines
223 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Daily Task Checks
|
||
|
* (c) 2013 LibreNMS Contributors
|
||
|
*/
|
||
|
|
||
|
include('includes/defaults.inc.php');
|
||
|
include('config.php');
|
||
|
|
||
|
$options = getopt("f:");
|
||
|
|
||
|
if ( $options['f'] === 'update') { echo $config['update']; }
|
||
|
|
||
|
?>
|