mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
24 lines
440 B
PHP
Executable File
24 lines
440 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* LibreNMS
|
|
*
|
|
* This file is part of LibreNMS
|
|
*
|
|
* @package librenms
|
|
* @subpackage cli
|
|
* @author The LibreNMS Contributors <librenms-project@google.groups.com>
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong (as Observium)
|
|
* @copyright (C) 2013 LibreNMS Contributors
|
|
*
|
|
*/
|
|
|
|
echo("\nPLEASE USE 'poller.php' INSTEAD!\n");
|
|
|
|
include("poller.php");
|
|
|
|
echo("\nPLEASE USE 'poller.php' INSTEAD!\n");
|
|
|
|
?>
|