(minor) make htpasswd use md5 passwords
(thanks to yoonique dot net at gmail; he also tested that files with some normal and some md5 passwords, such as would happen on an upgrade, work fine)
This commit is contained in:
parent
fe53e778c9
commit
3d9b4fae9f
|
@ -1151,7 +1151,7 @@ EOFhtp
|
|||
my $password = <>;
|
||||
$password =~ s/[\n\r]*$//;
|
||||
die "empty passwords are not allowed\n" unless $password;
|
||||
my $rc = system("htpasswd", "-b", $HTPASSWD_FILE, $ENV{GL_USER}, $password);
|
||||
my $rc = system("htpasswd", "-mb", $HTPASSWD_FILE, $ENV{GL_USER}, $password);
|
||||
die "htpasswd command seems to have failed with $rc return code...\n" if $rc;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue