This script is only meant to run at the command line.");
}
if (empty($_SERVER["argv"][2])) {
die("\nSyntax:\n php copy_cacti_user.php \n\n");
}
$no_http_headers = true;
include(dirname(__FILE__) . "/include/config.php");
include_once($config["base_path"] . "/lib/auth.php");
$template_user = $_SERVER["argv"][1];
$new_user = $_SERVER["argv"][2];
print "Cacti User Copy Utility\n";
print "Template User: " . $template_user . "\n";
print "New User: " . $new_user . "\n";
/* Check that user exists */
$user_auth = db_fetch_row("select * from user_auth where username = '$template_user'");
if (! isset($user_auth)) {
die("Error: Template user does not exist!\n\n");
}
print "\nCopying User...\n";
@user_copy($template_user, $new_user);
$user_auth = db_fetch_row("select * from user_auth where username = '$new_user'");
if (! isset($user_auth)) {
die("Error: User not copied!\n\n");
}
print "User copied...\n";
?>