]> git.proxmox.com Git - pve-access-control.git/blobdiff - test/auth-test.pl
buildsys: split packaging and source build-systems
[pve-access-control.git] / test / auth-test.pl
diff --git a/test/auth-test.pl b/test/auth-test.pl
deleted file mode 100644 (file)
index 60429a9..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use PVE::PTY;
-use PVE::AccessControl;
-
-my $username = shift;
-die "Username missing" if !$username;
-
-my $password = PVE::PTY::read_password('password: ');
-PVE::AccessControl::authenticate_user($username,$password);
-
-print "Authentication Successful!!\n";
-
-exit (0);