Skip to content

Commit

Permalink
added support for Spacewalk 2.3 to errata-import.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
philicious committed Apr 2, 2015
1 parent 82f9486 commit 16f2e08
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions errata-import.pl
Expand Up @@ -42,6 +42,7 @@
# 20141002 - Fixed --exclude-errata feature
# 20141007 - Fixed supportedapi array (Thanks, Christian)
# 20141023 - Added support for Ubuntu USN Errata
# 20150402 - Added support for API v16 (Spacewalk 2.3)
#
# To do:
# - Add CVEs to Errata (using errata.set_details) [ DONE! ]
Expand All @@ -62,8 +63,8 @@
import XML::Simple;

# Version information
my $version = "20141007";
my @supportedapi = ( '10.9','10.11','11.00','11.1','12','13','13.0','14','14.0','15','15.0' );
my $version = "20150402";
my @supportedapi = ( '10.9','10.11','11.00','11.1','12','13','13.0','14','14.0','15','15.0','16','16.0' );

# Spacewalk Version => API cheatsheet
# 0.6 => 10.9 == TESTED
Expand All @@ -82,6 +83,7 @@
# 2.0 => 13 == TESTED
# 2.1 => 14 == TESTED
# 2.2 => 15 == TESTED
# 2.3 => 16 == TESTED

# Variable declation
$| = 1;
Expand Down

0 comments on commit 16f2e08

Please sign in to comment.