librenms/config_to_json.php
Tony Murray 13da0aef4c
Remove legacy db config (#16385)
* Remove legacy db config
Should be configured via the environment or .env.

* Lint fix

* Remove call to removed method
2024-09-13 16:25:23 +02:00

18 lines
268 B
PHP
Executable File

#!/usr/bin/env php
<?php
/*
* Configuration to JSON converter
* Written by Job Snijders <job@instituut.net>
*
*/
use LibreNMS\Config;
$init_modules = ['nodb'];
require __DIR__ . '/includes/init.php';
if (App::runningInConsole()) {
echo Config::toJson();
}