mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-08-06 14:15:05 +00:00
use warnings instead of global -w flag
This commit is contained in:
parent
495949443a
commit
7c410d6301
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
||||
RELEASE=3.0
|
||||
RELEASE=3.1
|
||||
|
||||
VERSION=3.0
|
||||
PACKAGE=libpve-access-control
|
||||
|
@ -1,6 +1,7 @@
|
||||
package PVE::AccessControl;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Encode;
|
||||
use Crypt::OpenSSL::Random;
|
||||
use Crypt::OpenSSL::RSA;
|
||||
|
@ -1,6 +1,8 @@
|
||||
package PVE::Auth::LDAP;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use PVE::Auth::Plugin;
|
||||
use Net::LDAP;
|
||||
use base qw(PVE::Auth::Plugin);
|
||||
|
@ -1,6 +1,8 @@
|
||||
package PVE::Auth::PAM;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use PVE::Tools qw(run_command);
|
||||
use PVE::Auth::Plugin;
|
||||
use Authen::PAM qw(:constants);
|
||||
|
@ -1,6 +1,8 @@
|
||||
package PVE::Auth::PVE;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use PVE::Auth::Plugin;
|
||||
use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
|
||||
|
||||
|
@ -2,6 +2,8 @@ libpve-access-control (3.0-7) unstable; urgency=low
|
||||
|
||||
* check_volume_access : use parse_volname instead of path, and remove
|
||||
path related code.
|
||||
|
||||
* use warnings instead of global -w flag.
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Tue, 01 Oct 2013 12:35:53 +0200
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user