mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@1699 61d68cd4-352d-0410-923a-c4978735b2b8
38 lines
767 B
PHP
Executable File
38 lines
767 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
include("includes/defaults.inc.php");
|
|
include("config.php");
|
|
include("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($argv[1] && $argv[2] && $argv[3])
|
|
{
|
|
if(adduser($argv[1],$argv[2],$argv[3],$argv[4]))
|
|
{
|
|
echo("User ".$argv[1]." added successfully\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";
|
|
}
|
|
|
|
?>
|