mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
17 lines
253 B
PHP
17 lines
253 B
PHP
#!/usr/bin/env php
|
|||
<?php
|
|||
|
|
|
||
/*
|
|||
|
|
* Configuration to JSON converter
|
||
|
|
* Written by Job Snijders <[email protected]>
|
||
|
|
*
|
||
|
|
*/
|
||
|
|||
$init_modules = array();
|
|||
|
|
require __DIR__ . '/includes/init.php';
|
||
|
|||
if (isCli()) {
|
|||
|
|
global $config;
|
||
echo json_encode($config);
|
|||
}
|