mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* feature: allow validate.php to be run from any working directory * remove redundant realpath() call * re-add realpath() to remove symbolic links * realpath() isn't needed... * chdir() in all php scripts in ./ and ./scripts/ * update-sql.php clearly is not used, as it was broken. * Change some scripts to executable Remove extra chdir() call in snmp-scan.php * Missed console-ui.php Kind of fixed console-ui.php help output * Re-add newline
44 lines
1.1 KiB
PHP
Executable File
44 lines
1.1 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* This file is part of LibreNMS.
|
|
*
|
|
* @package LibreNMS
|
|
* @subpackage cli
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
chdir(__DIR__); // cwd to the directory containing this script
|
|
|
|
require 'includes/defaults.inc.php';
|
|
require 'config.php';
|
|
require 'includes/definitions.inc.php';
|
|
require 'includes/functions.php';
|
|
|
|
if (file_exists('html/includes/authentication/'.$config['auth_mechanism'].'.inc.php')) {
|
|
include 'html/includes/authentication/'.$config['auth_mechanism'].'.inc.php';
|
|
} else {
|
|
echo "ERROR: no valid auth_mechanism defined.\n";
|
|
exit();
|
|
}
|
|
|
|
if (auth_usermanagement()) {
|
|
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3])) {
|
|
if (!user_exists($argv[1])) {
|
|
if (adduser($argv[1], $argv[2], $argv[3], @$argv[4])) {
|
|
echo 'User '.$argv[1]." added successfully\n";
|
|
}
|
|
} else {
|
|
echo 'User '.$argv[1]." already exists!\n";
|
|
}
|
|
} else {
|
|
echo "Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n";
|
|
}
|
|
} else {
|
|
echo "Auth module does not allow adding users!\n";
|
|
}//end if
|