10 lines
208 B
Plaintext
10 lines
208 B
Plaintext
|
{
|
||
|
use esmith::util;
|
||
|
|
||
|
my $pw = esmith::util::LdapPassword();
|
||
|
|
||
|
$OUT .= "use mysql;\n";
|
||
|
$OUT .= "SET PASSWORD FOR 'root'\@localhost = PASSWORD(\"$pw\"); \n";
|
||
|
$OUT .= "FLUSH PRIVILEGES;\n";
|
||
|
}
|