mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2025-01-21 18:03:56 +03:00
use warnings instead of global -w flag
This commit is contained in:
parent
b72e2e9254
commit
990fc5e22e
@ -1,6 +1,7 @@
|
||||
package PVE::QMPClient;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use PVE::QemuServer;
|
||||
use IO::Multiplex;
|
||||
use POSIX qw(EINTR EAGAIN);
|
||||
|
@ -1,6 +1,7 @@
|
||||
package PVE::QemuServer;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use POSIX;
|
||||
use IO::Handle;
|
||||
use IO::Select;
|
||||
|
@ -1,6 +1,8 @@
|
||||
qemu-server (3.1-6) unstable; urgency=low
|
||||
|
||||
* use new PVE::Storage::abs_filesystem_path()
|
||||
|
||||
* use warnings instead of global -w flag
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Tue, 01 Oct 2013 12:42:42 +0200
|
||||
|
||||
|
@ -1,8 +1,9 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/perl
|
||||
|
||||
package main;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use PVE::Tools;
|
||||
use PVE::Cluster;
|
||||
use PVE::PodParser;
|
||||
|
@ -1,8 +1,9 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/perl
|
||||
|
||||
# this is some experimental code to test pci pass through
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use IO::Dir;
|
||||
use IO::File;
|
||||
use Time::HiRes qw(usleep);
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use PVE::QemuServer;
|
||||
use PVE::Tools qw(run_command);
|
||||
use PVE::Network;
|
||||
|
3
qm
3
qm
@ -1,6 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Getopt::Long;
|
||||
use Fcntl ':flock';
|
||||
use File::Path;
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Getopt::Long;
|
||||
use File::Path;
|
||||
use IO::File;
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use PVE::SafeSyslog;
|
||||
use PVE::Tools qw(extract_param);
|
||||
use PVE::INotify;
|
||||
|
Loading…
x
Reference in New Issue
Block a user