Show pagesourceOld revisionsBacklinksBack to top Share via Share via... Twitter LinkedIn Facebook Pinterest Telegram WhatsApp Yammer RedditRecent ChangesSend via e-MailPrintPermalink × NethServer::Password NAME NethServer::Password module The Module is used to create and store a password to /var/lib/nethserver/secrets SYNOPSIS To create, store and retrieve a password do : use NethServer::Password; my $pw = NethServer::Password::store('mysql'); by default the length is 16 characters. If you need a more stronger password (128 characters by example), you can call it directly my $pw = NethServer::Password->new('mysql',{'length' => 128})->save()->getAscii() It will be created, stored and retrieved when needed new getAscii generate save store Static shortcut method, compatible with esmith::util::genRandomPassword() The last documentation perldoc NethServer::Password developer, esmith nethserver/password.txt Last modified: 2016/12/03 14:10by Stephane de Labrusse