aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-06-13 12:44:57 +0000
committerNicolas Vigier <boklm@mageia.org>2013-06-13 12:44:57 +0000
commit7aef72e3e486c3146c7b1e315c82b2a01de81552 (patch)
tree7bac4327486985e0fba16bd93b84c5d7b826c925
parentdbb60f26899720e6931840d8a7194ca8669ad154 (diff)
downloadmgaadvisories-7aef72e3e486c3146c7b1e315c82b2a01de81552.tar
mgaadvisories-7aef72e3e486c3146c7b1e315c82b2a01de81552.tar.gz
mgaadvisories-7aef72e3e486c3146c7b1e315c82b2a01de81552.tar.bz2
mgaadvisories-7aef72e3e486c3146c7b1e315c82b2a01de81552.tar.xz
mgaadvisories-7aef72e3e486c3146c7b1e315c82b2a01de81552.zip
Add list command to list advisories
-rw-r--r--NEWS3
-rw-r--r--lib/MGA/Advisories.pm6
-rwxr-xr-xmgaadv16
3 files changed, 24 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9027dd5..3f62b51 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
-- add command to add a new advisory
+- add 'new' command to add a new advisory
+- add 'list' command to list advisories
Version 0.4
diff --git a/lib/MGA/Advisories.pm b/lib/MGA/Advisories.pm
index c5a31e1..f32625a 100644
--- a/lib/MGA/Advisories.pm
+++ b/lib/MGA/Advisories.pm
@@ -227,4 +227,10 @@ sub newadv {
return $file;
}
+sub listadv {
+ my ($advdb) = @_;
+ print map { "$_: $advdb->{advisories}{$_}{subject}\n" }
+ sort keys %{$advdb->{advisories}};
+}
+
1;
diff --git a/mgaadv b/mgaadv
index 0351703..4ea8b81 100755
--- a/mgaadv
+++ b/mgaadv
@@ -5,6 +5,15 @@ use MGA::Advisories;
use Template;
my %actions = (
+ list => {
+ run => \&listadv,
+ descr => 'List advisories',
+ usage => <<END,
+$0 list
+
+Print the list of published advisories
+END
+ },
mksite => {
run => \&mksite,
descr => 'Generates the advisories web site',
@@ -71,6 +80,13 @@ sub newadv {
}
}
+sub listadv {
+ usageexit('usage', $_[0]) unless @_ == 1;
+ my %advdb;
+ $advdb{advisories} = MGA::Advisories::get_advisories();
+ MGA::Advisories::listadv(\%advdb);
+}
+
if (@ARGV == 0 || !$actions{$ARGV[0]}) {
usageexit();
}