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