Skip to content

Commit 6fe5da1

Browse files
committed
Require at least perl-5.12.5 explicitly
1 parent c977f54 commit 6fe5da1

File tree

431 files changed

+459
-756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

431 files changed

+459
-756
lines changed

bin/rex

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# (c) Jan Gehring <[email protected]>
55
#
66

7-
use strict;
7+
use v5.12.5;
88
use warnings;
99

1010
our $VERSION = '9999.99.99_99'; # VERSION

bin/rexify

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# (c) Jan Gehring <[email protected]>
55
#
66

7-
use strict;
7+
use v5.12.5;
88
use warnings;
99

1010
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ See L<rex|https://metacpan.org/pod/distribution/Rex/bin/rex> for more informatio
4646

4747
package Rex;
4848

49-
use 5.010001;
50-
use strict;
49+
use v5.12.5;
5150
use warnings;
5251

5352
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Args.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Args;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Args/Integer.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Args::Integer;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Args/Single.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Args::Single;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Args/String.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Args::String;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Batch.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Batch;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Box.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Box;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Box/Amazon.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ See also the Methods of Rex::Box::Base. This module inherits all methods of it.
7575

7676
package Rex::Box::Amazon;
7777

78-
use 5.010001;
79-
use strict;
78+
use v5.12.5;
8079
use warnings;
8180
use Data::Dumper;
8281
use Rex::Box::Base;

lib/Rex/Box/Base.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ These methods are shared across all other Rex::Box modules.
1818

1919
package Rex::Box::Base;
2020

21-
use 5.010001;
22-
use strict;
21+
use v5.12.5;
2322
use warnings;
2423

2524
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Box/Docker.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ See also the Methods of Rex::Box::Base. This module inherits all methods of it.
6262

6363
package Rex::Box::Docker;
6464

65-
use 5.010001;
66-
use strict;
65+
use v5.12.5;
6766
use warnings;
6867
use Data::Dumper;
6968
use Rex::Box::Base;

lib/Rex/Box/KVM.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ See also the Methods of Rex::Box::Base. This module inherits all methods of it.
6161

6262
package Rex::Box::KVM;
6363

64-
use 5.010001;
65-
use strict;
64+
use v5.12.5;
6665
use warnings;
6766
use Data::Dumper;
6867
use Rex::Box::Base;

lib/Rex/Box/VBox.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ See also the Methods of Rex::Box::Base. This module inherits all methods of it.
8282

8383
package Rex::Box::VBox;
8484

85-
use 5.010001;
86-
use strict;
85+
use v5.12.5;
8786
use warnings;
8887
use Data::Dumper;
8988
use Rex::Box::Base;

lib/Rex/CLI.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::CLI;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/CMDB.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ This module exports a function to access a CMDB via a common interface. When the
3232

3333
package Rex::CMDB;
3434

35-
use 5.010001;
36-
use strict;
35+
use v5.12.5;
3736
use warnings;
3837

3938
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/CMDB/Base.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::CMDB::Base;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/CMDB/YAML.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::CMDB::YAML;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Cloud.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Cloud;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Cloud/Amazon.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99
package Rex::Cloud::Amazon;
1010

11-
use 5.010001;
12-
use strict;
11+
use v5.12.5;
1312
use warnings;
1413

1514
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Cloud/Base.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Cloud::Base;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Cloud/Jiffybox.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Cloud::Jiffybox;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Cloud/OpenStack.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Cloud::OpenStack;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ This module is the core commands module.
106106

107107
package Rex::Commands;
108108

109-
use 5.010001;
110-
use strict;
109+
use v5.12.5;
111110
use warnings;
112111

113112
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Augeas.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ This is a simple module to manipulate configuration files with the help of augea
3434

3535
package Rex::Commands::Augeas;
3636

37-
use 5.010001;
38-
use strict;
37+
use v5.12.5;
3938
use warnings;
4039

4140
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Box.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ Version <= 1.0: All these functions will not be reported.
5757

5858
package Rex::Commands::Box;
5959

60-
use 5.010001;
61-
use strict;
60+
use v5.12.5;
6261
use warnings;
6362

6463
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Cloud.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ Version <= 1.0: All these functions will not be reported.
5050

5151
package Rex::Commands::Cloud;
5252

53-
use 5.010001;
54-
use strict;
53+
use v5.12.5;
5554
use warnings;
5655

5756
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Cron.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ With this Module you can manage your cronjobs.
3333

3434
package Rex::Commands::Cron;
3535

36-
use 5.010001;
37-
use strict;
36+
use v5.12.5;
3837
use warnings;
3938

4039
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/DB.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ Version <= 1.0: All these functions will not be reported.
5454

5555
package Rex::Commands::DB;
5656

57-
use 5.010001;
58-
use strict;
57+
use v5.12.5;
5958
use warnings;
6059

6160
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Download.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ Version <= 1.0: All these functions will not be reported.
3131

3232
package Rex::Commands::Download;
3333

34-
use 5.010001;
35-
use strict;
34+
use v5.12.5;
3635
use warnings;
3736
use Rex::Helper::UserAgent;
3837
use Carp;

lib/Rex/Commands/File.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ With this module you can manipulate files.
5757

5858
package Rex::Commands::File;
5959

60-
use 5.010001;
61-
use strict;
60+
use v5.12.5;
6261
use warnings;
6362
use Fcntl;
6463

lib/Rex/Commands/Fs.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ With this module you can do file system tasks like creating directories, deletin
4444

4545
package Rex::Commands::Fs;
4646

47-
use 5.010001;
48-
use strict;
47+
use v5.12.5;
4948
use warnings;
5049

5150
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Gather.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ All these functions will not be reported. These functions don't modify anything.
2323

2424
package Rex::Commands::Gather;
2525

26-
use 5.010001;
27-
use strict;
26+
use v5.12.5;
2827
use warnings;
2928

3029
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Host.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ With this module you can manage the host entries in /etc/hosts.
2525

2626
package Rex::Commands::Host;
2727

28-
use 5.010001;
29-
use strict;
28+
use v5.12.5;
3029
use warnings;
3130

3231
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Inventory.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ All these functions will not be reported. These functions don't modify anything.
2626

2727
package Rex::Commands::Inventory;
2828

29-
use 5.010001;
30-
use strict;
29+
use v5.12.5;
3130
use warnings;
3231

3332
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Iptables.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ Only I<open_port> and I<close_port> are idempotent.
7979

8080
package Rex::Commands::Iptables;
8181

82-
use 5.010001;
83-
use strict;
82+
use v5.12.5;
8483
use warnings;
8584
use version;
8685

lib/Rex/Commands/JobControl.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
package Rex::Commands::JobControl;
66

7-
use 5.010001;
8-
use strict;
7+
use v5.12.5;
98
use warnings;
109

1110
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/Kernel.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ All these functions are not idempotent.
2626

2727
package Rex::Commands::Kernel;
2828

29-
use 5.010001;
30-
use strict;
29+
use v5.12.5;
3130
use warnings;
3231

3332
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/LVM.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ All these functions are not idempotent.
3030

3131
package Rex::Commands::LVM;
3232

33-
use 5.010001;
34-
use strict;
33+
use v5.12.5;
3534
use warnings;
3635

3736
our $VERSION = '9999.99.99_99'; # VERSION

lib/Rex/Commands/MD5.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ This is just a helper function and will not be reported.
2323

2424
package Rex::Commands::MD5;
2525

26-
use 5.010001;
27-
use strict;
26+
use v5.12.5;
2827
use warnings;
2928

3029
our $VERSION = '9999.99.99_99'; # VERSION

0 commit comments

Comments
 (0)