]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/CLIHandler.pm
re-enable run_cli, which is still in use
[pve-common.git] / src / PVE / CLIHandler.pm
index 0e7f20250639850af968cc50efa990ea4188a350..c448a80ef7828cb2f00f4961bce7c0fcd75cc211 100644 (file)
@@ -450,7 +450,12 @@ my $handle_simple_cmd = sub {
 sub run_cli {
     my ($class, $pwcallback, $podfn, $preparefunc) = @_;
 
-    die "depreciated function run_cli - use run_cli_handler instead";
+    # Note: "depreciated function run_cli - use run_cli_handler instead";
+    # silently ignore $podfn , which is no longer supported.
+
+    die "password callback is no longer supported" if $pwcallback;
+
+    run_cli_handler($class, prepare => $preparefunc);
 }
 
 sub run_cli_handler {