nethserver:password

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()
perldoc NethServer::Password