[pve-devel] [PATCH v3 access-control] pveum: remove read_password
Wolfgang Bumiller
w.bumiller at proxmox.com
Tue Sep 26 14:01:05 CEST 2017
Use the CLIHandler's default.
---
PVE/CLI/pveum.pm | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/PVE/CLI/pveum.pm b/PVE/CLI/pveum.pm
index aef7089..5c217c8 100755
--- a/PVE/CLI/pveum.pm
+++ b/PVE/CLI/pveum.pm
@@ -25,18 +25,6 @@ sub setup_environment {
PVE::RPCEnvironment->setup_default_cli_env();
}
-sub read_password {
- # return $ENV{PVE_PW_TICKET} if defined($ENV{PVE_PW_TICKET});
-
- my $term = new Term::ReadLine ('pveum');
- my $attribs = $term->Attribs;
- $attribs->{redisplay_function} = $attribs->{shadow_redisplay};
- my $input = $term->readline('Enter new password: ');
- my $conf = $term->readline('Retype new password: ');
- die "Passwords do not match.\n" if ($input ne $conf);
- return $input;
-}
-
our $cmddef = {
ticket => [ 'PVE::API2::AccessControl', 'create_ticket', ['username'], undef,
sub {
--
2.11.0
More information about the pve-devel
mailing list