mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
23 lines
358 B
PHP
23 lines
358 B
PHP
|
|
#!/usr/bin/env php
|
||
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Observium
|
||
|
|
*
|
||
|
|
* This file is part of Observium.
|
||
|
|
*
|
||
|
|
* @package observium
|
||
|
|
* @subpackage poller
|
||
|
|
* @author Adam Armstrong <[email protected]>
|
||
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
echo("\nPLEASE USE 'poller.php' INSTEAD!\n");
|
||
|
|
|
||
|
|
include("poller.php");
|
||
|
|
|
||
|
|
echo("\nPLEASE USE 'poller.php' INSTEAD!\n");
|
||
|
|
|
||
|
|
?>
|