Bug 21087: Fix create_superlibrarian.pl script
Signed-off-by: John Doe <you@example.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
135cb68db3
commit
9add683d82
1 changed files with 4 additions and 1 deletions
|
@ -40,7 +40,7 @@ pod2usage("branchcode is mandatory") unless $branchcode;
|
||||||
pod2usage("categorycode is mandatory") unless $categorycode;
|
pod2usage("categorycode is mandatory") unless $categorycode;
|
||||||
pod2usage("cardnumber is mandatory") unless $cardnumber;
|
pod2usage("cardnumber is mandatory") unless $cardnumber;
|
||||||
|
|
||||||
Koha::Patron->new({
|
my $patron = Koha::Patron->new({
|
||||||
surname => $surname,
|
surname => $surname,
|
||||||
userid => $userid,
|
userid => $userid,
|
||||||
cardnumber => $cardnumber,
|
cardnumber => $cardnumber,
|
||||||
|
@ -50,6 +50,9 @@ Koha::Patron->new({
|
||||||
flags => 1,
|
flags => 1,
|
||||||
})->store;
|
})->store;
|
||||||
|
|
||||||
|
my $digest = Koha::AuthUtils::hash_password($password);
|
||||||
|
$patron->update({password => $digest,});
|
||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
||||||
create_superlibrarian.pl - create a user in Koha with superlibrarian permissions
|
create_superlibrarian.pl - create a user in Koha with superlibrarian permissions
|
||||||
|
|
Loading…
Reference in a new issue