# HG changeset patch # User Matthias Förste foerste@schlittermann.de # Date 1322231385 -3600 # Node ID 05d5ada37387fcd705bb4746db3a04cbcce86d32 # Parent 62eb58a0ec398638a639928c9cbef43ef2f4b674 not using mkpasswd any more because it does not what it probably was supposed to diff -r 62eb58a0ec39 -r 05d5ada37387 account.pm --- a/account.pm Fri Nov 25 14:48:09 2011 +0100 +++ b/account.pm Fri Nov 25 15:29:45 2011 +0100 @@ -463,8 +463,8 @@ return $in unless $in and $in eq "{pwgen}"; if (!@pw) { - chomp(@pw = `pwgen 8 10 2>/dev/null|| mkpasswd`); - die "pwgen/mkpasswd: $!" if $?; + chomp(@pw = `pwgen 8 10 2>/dev/null`); + die "pwgen: $!" if $?; } return shift @pw;