Add support for installing RIFT.ware from public repos 49/249/1
authorJeremy Mordkoff <jeremy.mordkoff@riftio.com>
Mon, 18 Jul 2016 18:20:26 +0000 (14:20 -0400)
committerJeremy Mordkoff <jeremy.mordkoff@riftio.com>
Mon, 18 Jul 2016 18:20:26 +0000 (14:20 -0400)
Signed-off-by: Jeremy Mordkoff <jeremy.mordkoff@riftio.com>
scripts/util/TEST_OSM [changed mode: 0644->0755]
scripts/util/host-platform
scripts/util/riftware_install.sh
scripts/vm_image/mkvmimg
scripts/vm_image/riftware.repo
scripts/vm_image/ui.config.sh
scripts/vm_image/ui.rpms

old mode 100644 (file)
new mode 100755 (executable)
index 42913ec..a92f8c6
@@ -1,27 +1,33 @@
 #!/bin/bash
 
 
+set -e
 CONTAINER=${1:-osm}
+image=${2:-fc20}
 
 if [ ! -f riftware_install.sh ]; then
-    wget -O riftware_install.sh i'https://osm.etsi.org/gitweb/?p=osm/riftware.git;a=blob_plain;f=scripts/util/riftware_install.sh;hb=HEAD'
+    wget -O riftware_install.sh 'https://osm.etsi.org/gitweb/?p=osm/riftware.git;a=blob_plain;f=scripts/util/riftware_install.sh;hb=HEAD'
     echo -e '\n\n please review riftware_install.sh and then run this script again\n\n'
     exit 0
 fi
     
 
-echo -e '\n\n using container name $CONTAINER \n\n'
-lxc launch fc20 $CONTAINER
+if ! lxc info $CONTAINER >/dev/null 2>&1; then
+    echo -e "\n\nCreating container $CONTAINER using image $image\n"
+    lxc launch $image $CONTAINER
+else
+    echo -e "\n\n using existing container $CONTAINER \n"
+fi
 
 
 lxc file push riftware_install.sh ${CONTAINER}/root/
-while ! lxc exec ${CONTAINER} ifconfig eth0 | grep -q 'inet '; do
+while ! lxc exec ${CONTAINER} ip addr show dev eth0 | grep -q 'inet '; do
     echo waiting for network
     sleep 1
 done
-lxc exec ${CONTAINER} ifconfig eth0
+lxc exec ${CONTAINER} ip addr show dev eth0
 sleep 1
-lxc exec ${CONTAINER} -- bash -xe /root/riftware_install.sh
+lxc exec ${CONTAINER} -- bash -ex /root/riftware_install.sh
 
-ADDRESS=$(lxc exec ${CONTAINER} ifconfig eth0 | awk '/inet / { print $2 }')
-echo "installation complete. Open a browser on https://${ADDRESS}:8443"
+ADDRESS=$(lxc exec ${CONTAINER} ip addr show dev eth0 | awk '/inet ([0-9.]+)/ { print $2 }' | cut -f1 -d/)
+echo "installation complete. Open a browser on https://${ADDRESS}:8443 in about 30 seconds"
index 862b2b1..4af565a 100755 (executable)
@@ -12,5 +12,6 @@ case $PLATFORM in
     *Ubuntu-16.04*) echo ub16; exit;;
     *fedora-20*)    echo fc20; exit;;
     *fedora-23*)    echo fc23; exit;;
+    *fedora-24*)    echo fc24; exit;;
     *) echo "Unknown platform: $PLATFORM" >&2 ; exit 1;;
 esac
index 560d4c9..5c3e184 100644 (file)
@@ -2,13 +2,13 @@
 
 
 
-#REPO_URL=jmordkof@jeremy-pc:/home/jmordkof/workspace/osm/riftware
-REPO_URL=https://osm.etsi.org/gerrit/osm/riftware.git
-USE_RIFT_MIRRORS=true
+REPO_URL=jmordkof@jeremy-pc:/home/jmordkof/workspace/osm/riftware
+#REPO_URL=https://osm.etsi.org/gerrit/osm/riftware.git
+USE_RIFT_MIRRORS=false
 
 set -e
 echo -e '\n\n=========== Installing base packages ========\n\n'
-yum install -y git curl python3 screen which wget
+yum --nogpgcheck install -y git curl python3 screen which wget
 
 echo -e '\n\n=========== Cloning RIFT.ware ========\n\n'
 if [ -e riftware ]; then
@@ -29,10 +29,16 @@ yum clean all
 yum makecache
 
 echo -e '\n\n=========== Installing prerequisites ========\n\n'
-./rift-shell -r -e -- ./scripts/vm_image/mkcontainer --no-repo-file --modes ui  
+if ! $USE_RIFT_MIRRORS; then
+    opts="--latest"
+else
+    opts=""
+fi
+
+./rift-shell -r -e -- ./scripts/vm_image/mkcontainer $opts --no-repo-file --modes ui  
 
 echo -e '\n\n=========== Installing RIFT.ware Launchpad ========\n\n'
-yum install -y riftware-launchpad
+yum --nogpgcheck install -y riftware-launchpad
 echo -e '\n\n=========== Starting RIFT.ware Launchpad ========\n\n'
 systemctl start rwlp 
 
index 7879f12..4e9124f 100755 (executable)
@@ -511,19 +511,19 @@ install_kernel() {
     if [ -n "$KERNEL_REV" ]; then
        if $CONTAINER; then
             yum_install kernel-devel-${KERNEL_REV}
-       else
+           else
             yum_install kernel-${KERNEL_REV} kernel-devel-${KERNEL_REV} kernel-modules-extra-${KERNEL_REV}
         fi
-       if [ ! -e /lib/modules/${KERNEL_REV}/build ]; then
-           mkdir -p /lib/modules/${KERNEL_REV}
-           ln -s /usr/src/kernels/${KERNEL_REV} /lib/modules/${KERNEL_REV}/build
-       fi
+           if [ ! -e /lib/modules/${KERNEL_REV}/build ]; then
+               mkdir -p /lib/modules/${KERNEL_REV}
+               ln -s /usr/src/kernels/${KERNEL_REV} /lib/modules/${KERNEL_REV}/build
+           fi
     else
-       if [[ $DISTRO == fedora ]]; then
+           if [[ $DISTRO == fedora ]]; then
             yum_install kernel-devel
-       else
-           :
-       fi
+           else
+               :
+           fi
     fi
 
 }
@@ -674,6 +674,7 @@ _NBD_NODES=""
 # This is roughly the amount of space required to hold the .install tree when
 # built with NOT_DEVELOPER_BUILD=TRUE, also known as 1.5G
 _EXTRA_DISK_SPACE_K=1572864
+LATEST=false
 
 if [[ $PLATFORM_OS == 'fc20' ]]; then
     DISTRO=fedora
@@ -702,6 +703,21 @@ elif [[ $PLATFORM_OS == 'fc23' ]]; then
     SEED="Fedora-Cloud-Base-23-20151030.x86_64.qcow2"
     REPO_FILE="riftware-release.repo"
     NODEJS=/usr/bin/node
+
+elif [[ $PLATFORM_OS == 'fc24' ]]; then
+    DISTRO=fedora
+    RELEASE=24
+    SHORTNAME=fc24
+    YUM=dnf
+    PIP3_INSTALLER=/bin/pip3
+    FIX_PIP=0
+    ONLY_RIFT_REPOS=0
+    USE_INTERNET_REPOS=1
+    KERNEL_REV=""
+    SEED="Fedora-Cloud-Base-24-*.x86_64.qcow2"
+    REPO_FILE="riftware-release.repo"
+    NODEJS=/usr/bin/node
+    
     
 elif [[ $PLATFORM_OS == 'ub16' ]]; then
     DISTRO=ubuntu
@@ -836,6 +852,13 @@ while [ $# -gt 0 ]; do
             shift
             KERNEL_REV="$1"
             ;;
+        --no-kernel-rev)
+            KERNEL_REV=""
+            ;;
+        --latest)
+            KERNEL_REV=""
+            LATEST=true
+            ;;
         *)
             set -x
             echo "args= $# "
@@ -961,7 +984,12 @@ for mode in $MODES; do
        # - Blank lines are ignored
        # - Packages listed on a line without : are always included
        # - format of other lines is: "os(,os)*:pkg"  where os is ub16, fc20, etc.
-        yum_install $(cat $basename.rpms | sed 's/#.*//' | egrep -v '^\s*$' | egrep '^[^:]*'$SHORTNAME'[^:]*:|^[^:]+$' | sed -r 's/^[^:]*:\s*//')
+        if $LATEST; then
+            echo USING LATEST
+            yum_install $(cat $basename.rpms | sed 's/#.*//' | egrep -v '^\s*$' | egrep '^[^:]*'$SHORTNAME'[^:]*:|^[^:]+$' | sed -r 's/^[^:]*:\s*//' | sed -r 's/([-.]([0-9]+|[0-9]+(git|pre|cvs|svn|gitcd|alpha)[0-9a-f]*|git[0-9]+|dsf|fc20|fc22|x86_64|noarch))*$//' )
+        else
+            yum_install $(cat $basename.rpms | sed 's/#.*//' | egrep -v '^\s*$' | egrep '^[^:]*'$SHORTNAME'[^:]*:|^[^:]+$' | sed -r 's/^[^:]*:\s*//')
+        fi
         cmd df -h /
     fi
     if [ -s $basename.pip ]; then
index 0128523..a453d28 100644 (file)
@@ -4,7 +4,7 @@
 #
 [RIFT.ware]
 name=RIFT.ware
-baseurl=http://repos.riftio.com/releases/riftware/release/fedora/$releasever
+baseurl=http://repos.riftio.com/releases/riftware/release/fedora/20
 enabled=1
 metadata_expire=1m
 gpgcheck=0
@@ -15,7 +15,7 @@ skip_if_unavailable=False
 #
 [RIFT.packages]
 name=RIFT.ware Packages
-baseurl=http://repos.riftio.com/packages/fedora/$releasever
+baseurl=http://repos.riftio.com/packages/fedora/20
 enabled=1
 metadata_expire=1m
 gpgcheck=0
@@ -25,7 +25,7 @@ skip_if_unavailable=False
 #
 [RIFT.misc]
 name=Misc Packages collected by RIFT.io
-baseurl=http://repos.riftio.com/mirrors/fedora/$releasever/misc
+baseurl=http://repos.riftio.com/mirrors/fedora/20/misc
 enabled=1
 metadata_expire=1m
 gpgcheck=0
index 3f9f4ca..8a4f121 100644 (file)
@@ -1,10 +1,13 @@
 
 # STANDARD_RIFT_IO_COPYRIGHT
 
-# upgrade node binary manually
-if [[ -f $STAGING/usr/bin/node ]]; then
-       echo "===== Upgrading node binary"
-       cp -v /net/strange/localdisk/nhudson/RIFT-9422/node-v4.4.2-linux-x64/bin/node $STAGING/usr/bin/node
+
+if [[ $PLATFORM_OS == 'fc20' || $PLATFORM_OS == 'ub16' ]]; then
+    # upgrade node binary manually
+    if [[ -f $STAGING/usr/bin/node ]]; then
+           echo "===== Upgrading node binary"
+           cp -v /net/strange/localdisk/nhudson/RIFT-9422/node-v4.4.2-linux-x64/bin/node $STAGING/usr/bin/node
+    fi
 fi
 
 # NPM options
index ec80ee8..2171a31 100644 (file)
-fc20: acl-2.2.52-4.fc20.x86_64
-fc20: audit-2.3.2-1.fc20.x86_64
-fc20: audit-libs-2.3.2-1.fc20.x86_64
-fc20: audit-libs-python-2.3.2-1.fc20.x86_64
-fc20: augeas-libs-1.1.0-2.fc20.x86_64
-fc20: autogen-libopts-5.18-1.fc20.x86_64
-fc20: avahi-libs-0.6.31-21.fc20.x86_64
-fc20: basesystem-10.0-9.fc20.noarch
-fc20: bash-4.2.45-4.fc20.x86_64
-fc20: bind-libs-lite-9.9.4-8.fc20.x86_64
-fc20: bind-license-9.9.4-8.fc20.noarch
-fc20: bind-utils
-fc20: binutils-2.23.88.0.1-13.fc20.x86_64
-fc20: boost-filesystem-1.54.0-9.fc20.x86_64
-fc20: boost-system-1.54.0-9.fc20.x86_64
-fc20: boost-thread-1.54.0-9.fc20.x86_64
-fc20: bridge-utils
-fc20: bzip2-1.0.6-9.fc20.x86_64
-fc20: bzip2-libs-1.0.6-9.fc20.x86_64
-fc20: ca-certificates-2013.1.94-18.fc20.noarch
-fc20: c-ares-1.10.0-2.fc20.x86_64
-fc20: c-ares-devel-1.10.0-2.fc20.x86_64
-fc20: ceph-libs-0.67.3-2.fc20.x86_64
-fc20: chkconfig-1.3.60-4.fc20.x86_64
-fc20: cloud-init-0.7.2-7.fc20.noarch
-fc20: cloud-utils-growpart-0.27-9.fc20.noarch
-fc20: coreutils-8.21-18.fc20.x86_64
-fc20: corosync-2.3.3-1.fc20.x86_64
-fc20: corosynclib-2.3.3-1.fc20.x86_64
-fc20: cpio-2.11-24.fc20.x86_64
-fc20: cpp-4.8.2-7.fc20.x86_64
-fc20: cracklib-2.9.0-5.fc20.x86_64
-fc20: cracklib-dicts-2.9.0-5.fc20.x86_64
-fc20: cronie-1.4.11-4.fc20.x86_64
-fc20: cronie-anacron-1.4.11-4.fc20.x86_64
-fc20: crontabs-1.11-6.20121102git.fc20.noarch
-fc20: cryptopp-5.6.2-3.fc20.x86_64
-fc20: cryptsetup-libs-1.6.2-1.fc20.x86_64
-fc20: curl-7.32.0-3.fc20.x86_64
-fc20: cyrus-sasl-2.1.26-14.fc20.x86_64
-fc20: cyrus-sasl-lib-2.1.26-14.fc20.x86_64
-fc20: cyrus-sasl-md5-2.1.26-14.fc20.x86_64
-fc20: dbus-1.6.12-1.fc20.x86_64
-fc20: dbus-libs-1.6.12-1.fc20.x86_64
-fc20: device-mapper-1.02.82-5.fc20.x86_64
-fc20: device-mapper-event-1.02.82-5.fc20.x86_64
-fc20: device-mapper-event-libs-1.02.82-5.fc20.x86_64
-fc20: device-mapper-libs-1.02.82-5.fc20.x86_64
-fc20: device-mapper-persistent-data-0.2.8-1.fc20.x86_64
-fc20: dhclient-4.2.5-26.fc20.x86_64
-fc20: dhcp-common-4.2.5-26.fc20.x86_64
-fc20: dhcp-libs-4.2.5-26.fc20.x86_64
-fc20: diffutils-3.3-4.fc20.x86_64
-fc20: dmidecode-2.12-4.fc20.x86_64
-fc20: dnsmasq-2.68-1.fc20.x86_64
-fc20: dracut-034-64.git20131205.fc20.x86_64
-fc20: dracut-config-generic-034-64.git20131205.fc20.x86_64
-fc20: dtc-1.4.0-2.fc20.x86_64
-fc20: dwz-0.11-2.fc20.x86_64
-fc20: e2fsprogs-1.42.8-3.fc20.x86_64
-fc20: e2fsprogs-libs-1.42.8-3.fc20.x86_64
-fc20: ebtables-2.0.10-11.fc20.x86_64
-fc20: elfutils-libelf-0.157-1.fc20.x86_64
-fc20: expat-2.1.0-7.fc20.x86_64
-fc20: expect-5.45-10.fc20.x86_64
-fc20: fedora-logos-21.0.1-1.fc20.x86_64
-fc20: fedora-release-20-1.noarch
-fc20: file-5.14-14.fc20.x86_64
-fc20: file-libs-5.14-14.fc20.x86_64
-fc20: filesystem-3.2-19.fc20.x86_64
-fc20: findutils-4.5.11-4.fc20.x86_64
-fc20: fipscheck-1.4.1-2.fc20.x86_64
-fc20: fipscheck-lib-1.4.1-2.fc20.x86_64
-fc20: freetype-2.5.0-4.fc20.x86_64
+fc20,fc24: acl-2.2.52-4.fc20.x86_64
+fc20,fc24: audit-2.3.2-1.fc20.x86_64
+fc20,fc24: audit-libs-2.3.2-1.fc20.x86_64
+fc20,fc24: audit-libs-python-2.3.2-1.fc20.x86_64
+fc20,fc24: augeas-libs-1.1.0-2.fc20.x86_64
+fc20,fc24: autogen-libopts-5.18-1.fc20.x86_64
+fc20,fc24: avahi-libs-0.6.31-21.fc20.x86_64
+fc20,fc24: basesystem-10.0-9.fc20.noarch
+fc20,fc24: bash-4.2.45-4.fc20.x86_64
+fc20,fc24: bind-libs-lite-9.9.4-8.fc20.x86_64
+fc20,fc24: bind-license-9.9.4-8.fc20.noarch
+fc20,fc24: bind-utils
+fc20,fc24: binutils-2.23.88.0.1-13.fc20.x86_64
+fc20,fc24: boost-filesystem-1.54.0-9.fc20.x86_64
+fc20,fc24: boost-system-1.54.0-9.fc20.x86_64
+fc20,fc24: boost-thread-1.54.0-9.fc20.x86_64
+fc20,fc24: bridge-utils
+fc20,fc24: bzip2-1.0.6-9.fc20.x86_64
+fc20,fc24: bzip2-libs-1.0.6-9.fc20.x86_64
+fc20,fc24: ca-certificates-2013.1.94-18.fc20.noarch
+fc20,fc24: c-ares-1.10.0-2.fc20.x86_64
+fc20,fc24: c-ares-devel-1.10.0-2.fc20.x86_64
+fc20,fc24: ceph-libs-0.67.3-2.fc20.x86_64
+fc20,fc24: chkconfig-1.3.60-4.fc20.x86_64
+fc20,fc24: cloud-init-0.7.2-7.fc20.noarch
+fc20,fc24: cloud-utils-growpart-0.27-9.fc20.noarch
+fc20,fc24: coreutils-8.21-18.fc20.x86_64
+fc20,fc24: corosync-2.3.3-1.fc20.x86_64
+fc20,fc24: corosynclib-2.3.3-1.fc20.x86_64
+fc20,fc24: cpio-2.11-24.fc20.x86_64
+fc20,fc24: cpp-4.8.2-7.fc20.x86_64
+fc20,fc24: cracklib-2.9.0-5.fc20.x86_64
+fc20,fc24: cracklib-dicts-2.9.0-5.fc20.x86_64
+fc20,fc24: cronie-1.4.11-4.fc20.x86_64
+fc20,fc24: cronie-anacron-1.4.11-4.fc20.x86_64
+fc20,fc24: crontabs-1.11-6.20121102git.fc20.noarch
+fc20,fc24: cryptopp-5.6.2-3.fc20.x86_64
+fc20,fc24: cryptsetup-libs-1.6.2-1.fc20.x86_64
+fc20,fc24: curl-7.32.0-3.fc20.x86_64
+fc20,fc24: cyrus-sasl-2.1.26-14.fc20.x86_64
+fc20,fc24: cyrus-sasl-lib-2.1.26-14.fc20.x86_64
+fc20,fc24: cyrus-sasl-md5-2.1.26-14.fc20.x86_64
+fc20,fc24: dbus-1.6.12-1.fc20.x86_64
+fc20,fc24: dbus-libs-1.6.12-1.fc20.x86_64
+fc20,fc24: device-mapper-1.02.82-5.fc20.x86_64
+fc20,fc24: device-mapper-event-1.02.82-5.fc20.x86_64
+fc20,fc24: device-mapper-event-libs-1.02.82-5.fc20.x86_64
+fc20,fc24: device-mapper-libs-1.02.82-5.fc20.x86_64
+fc20,fc24: device-mapper-persistent-data-0.2.8-1.fc20.x86_64
+fc20,fc24: dhclient-4.2.5-26.fc20.x86_64
+fc20,fc24: dhcp-common-4.2.5-26.fc20.x86_64
+fc20,fc24: dhcp-libs-4.2.5-26.fc20.x86_64
+fc20,fc24: diffutils-3.3-4.fc20.x86_64
+fc20,fc24: dmidecode-2.12-4.fc20.x86_64
+fc20,fc24: dnsmasq-2.68-1.fc20.x86_64
+fc20,fc24: dracut-034-64.git20131205.fc20.x86_64
+fc20,fc24: dracut-config-generic-034-64.git20131205.fc20.x86_64
+fc20,fc24: dtc-1.4.0-2.fc20.x86_64
+fc20,fc24: dwz-0.11-2.fc20.x86_64
+fc20,fc24: e2fsprogs-1.42.8-3.fc20.x86_64
+fc20,fc24: e2fsprogs-libs-1.42.8-3.fc20.x86_64
+fc20,fc24: ebtables-2.0.10-11.fc20.x86_64
+fc20,fc24: elfutils-libelf-0.157-1.fc20.x86_64
+fc20,fc24: expat-2.1.0-7.fc20.x86_64
+fc20,fc24: expect-5.45-10.fc20.x86_64
+fc20,fc24: fedora-logos-21.0.1-1.fc20.x86_64
+fc20,fc24: fedora-release-20-1.noarch
+fc20,fc24: file-5.14-14.fc20.x86_64
+fc20,fc24: file-libs-5.14-14.fc20.x86_64
+fc20,fc24: filesystem-3.2-19.fc20.x86_64
+fc20,fc24: findutils-4.5.11-4.fc20.x86_64
+fc20,fc24: fipscheck-1.4.1-2.fc20.x86_64
+fc20,fc24: fipscheck-lib-1.4.1-2.fc20.x86_64
+fc20,fc24: freetype-2.5.0-4.fc20.x86_64
 ub16: libfreetype6-dev
-fc20: fuse-libs-2.9.3-2.fc20.x86_64
-fc20: gawk-4.1.0-2.fc20.x86_64
-fc20: gcc-4.8.2-7.fc20.x86_64
-fc20: gcc-c++-4.8.2-7.fc20.x86_64
-fc20: gdbm-1.10-7.fc20.x86_64
-fc20: gettext-0.18.3.1-1.fc20.x86_64
-fc20: gettext-libs-0.18.3.1-1.fc20.x86_64
-fc20: glib2
-fc20: glibc
-fc20: glibc-common
-fc20: glibc-devel
-fc20: glibc-headers
-fc20: glusterfs-3.4.2-1.fc20.x86_64
-fc20: glusterfs-api-3.4.2-1.fc20.x86_64
-fc20: glusterfs-fuse-3.4.2-1.fc20.x86_64
-fc20: glusterfs-libs-3.4.2-1.fc20.x86_64
-fc20: gmp-5.1.2-2.fc20.x86_64
-fc20: gnupg2-2.0.22-1.fc20.x86_64
-fc20: gnutls-3.1.20-1.fc20.x86_64
-fc20: gnutls-dane-3.1.20-1.fc20.x86_64
-fc20: gnutls-utils-3.1.20-1.fc20.x86_64
-fc20: gpgme-1.3.2-4.fc20.x86_64
-fc20: grep-2.15-1.fc20.x86_64
-fc20: groff-base-1.22.2-8.fc20.x86_64
-fc20: grub2-2.00-25.fc20.x86_64
-fc20: grub2-tools-2.00-25.fc20.x86_64
-fc20: grubby-8.28-1.fc20.x86_64
-fc20: gyp-0.1-0.11.1617svn.fc20.noarch
-fc20: gzip-1.6-2.fc20.x86_64
-fc20: hardlink-1.0-18.fc20.x86_64
-fc20: heat-cfntools-1.2.3-2.fc20.noarch
-fc20: hostname-3.13-2.fc20.x86_64
-fc20: http-parser-2.0-5.20121128gitcd01361.fc20.x86_64
-fc20: http-parser-devel-2.0-5.20121128gitcd01361.fc20.x86_64
-fc20: hwdata-0.260-1.fc20.noarch
-fc20: info-5.1-4.fc20.x86_64
-fc20: initscripts-9.50-1.fc20.x86_64
-fc20: iproute-3.11.0-1.fc20.x86_64
-fc20: iptables-1.4.19.1-1.fc20.x86_64
-fc20: iptables-services-1.4.19.1-1.fc20.x86_64
-fc20: iputils-20121221-4.fc20.x86_64
-fc20: iscsi-initiator-utils-6.2.0.873-17.fc20.x86_64
-fc20: jbigkit-libs-2.0-9.fc20.x86_64
-fc20: json-c-0.11-3.fc20.x86_64
-fc20: kbd-1.15.5-12.fc20.x86_64
-fc20: kbd-legacy-1.15.5-12.fc20.noarch
-fc20: kbd-misc-1.15.5-12.fc20.noarch
-fc20: keyutils
-fc20: keyutils-libs
-fc20: keyutils-libs-devel
-fc20: kmod-15-1.fc20.x86_64
-fc20: kmod-libs-15-1.fc20.x86_64
-fc20: kpartx-0.4.9-55.fc20.x86_64
-fc20: krb5-devel-1.11.3-39.fc20.x86_64
-fc20: krb5-libs-1.11.3-39.fc20.x86_64
-fc20: lcms-libs-1.19-10.fc20.x86_64
-fc20: ldns-1.6.16-6.fc20.x86_64
-fc20: less-458-4.fc20.x86_64
-fc20: leveldb-1.12.0-5.fc20.x86_64
-fc20: libacl-2.2.52-4.fc20.x86_64
-fc20: libaio-0.3.109-8.fc20.x86_64
-fc20: libassuan-2.1.0-2.fc20.x86_64
-fc20: libattr-2.4.47-3.fc20.x86_64
-fc20: libblkid-2.24-2.fc20.x86_64
-fc20: libcap-2.22-7.fc20.x86_64
-fc20: libcap-ng-0.7.3-6.fc20.x86_64
-fc20: libcgroup-0.38-7.fc20.x86_64
-fc20: libcom_err-1.42.8-3.fc20.x86_64
-fc20: libcom_err-devel-1.42.8-3.fc20.x86_64
-fc20: libcroco-0.6.8-3.fc20.x86_64
-fc20: libcurl-7.32.0-3.fc20.x86_64
-fc20: libdaemon-0.14-6.fc20.x86_64
-fc20: libdb-5.3.28-1.fc20.x86_64
-fc20: libdb-utils-5.3.28-1.fc20.x86_64
-fc20: libedit-3.1-2.20130601cvs.fc20.x86_64
-fc20: libestr-0.1.5-2.fc20.x86_64
-fc20: libevent-2.0.21-3.fc20.x86_64
-fc20: libffi-3.0.13-5.fc20.x86_64
+fc24: freetype-devel
+fc20,fc24: fuse-libs-2.9.3-2.fc20.x86_64
+fc20,fc24: gawk-4.1.0-2.fc20.x86_64
+fc20,fc24: gcc-4.8.2-7.fc20.x86_64
+fc20,fc24: gcc-c++-4.8.2-7.fc20.x86_64
+fc20,fc24: gdbm-1.10-7.fc20.x86_64
+fc20,fc24: gettext-0.18.3.1-1.fc20.x86_64
+fc20,fc24: gettext-libs-0.18.3.1-1.fc20.x86_64
+fc20,fc24: glib2
+fc20,fc24: glibc
+fc20,fc24: glibc-common
+fc20,fc24: glibc-devel
+fc20,fc24: glibc-headers
+fc20,fc24: glusterfs-3.4.2-1.fc20.x86_64
+fc20,fc24: glusterfs-api-3.4.2-1.fc20.x86_64
+fc20,fc24: glusterfs-fuse-3.4.2-1.fc20.x86_64
+fc20,fc24: glusterfs-libs-3.4.2-1.fc20.x86_64
+fc20,fc24: gmp-5.1.2-2.fc20.x86_64
+fc20,fc24: gnupg2-2.0.22-1.fc20.x86_64
+fc20,fc24: gnutls-3.1.20-1.fc20.x86_64
+fc20,fc24: gnutls-dane-3.1.20-1.fc20.x86_64
+fc20,fc24: gnutls-utils-3.1.20-1.fc20.x86_64
+fc20,fc24: gpgme-1.3.2-4.fc20.x86_64
+fc20,fc24: grep-2.15-1.fc20.x86_64
+fc20,fc24: groff-base-1.22.2-8.fc20.x86_64
+fc20,fc24: grub2-2.00-25.fc20.x86_64
+fc20,fc24: grub2-tools-2.00-25.fc20.x86_64
+fc20,fc24: grubby-8.28-1.fc20.x86_64
+fc20,fc24: gyp-0.1-0.11.1617svn.fc20.noarch
+fc20,fc24: gzip-1.6-2.fc20.x86_64
+fc20,fc24: hardlink-1.0-18.fc20.x86_64
+fc20,fc24: heat-cfntools-1.2.3-2.fc20.noarch
+fc20,fc24: hostname-3.13-2.fc20.x86_64
+fc20,fc24: http-parser-2.0-5.20121128gitcd01361.fc20.x86_64
+fc20,fc24: http-parser-devel-2.0-5.20121128gitcd01361.fc20.x86_64
+fc20,fc24: hwdata-0.260-1.fc20.noarch
+fc20,fc24: info-5.1-4.fc20.x86_64
+fc20,fc24: initscripts-9.50-1.fc20.x86_64
+fc20,fc24: iproute-3.11.0-1.fc20.x86_64
+fc20,fc24: iptables-1.4.19.1-1.fc20.x86_64
+fc20,fc24: iptables-services-1.4.19.1-1.fc20.x86_64
+fc20,fc24: iputils-20121221-4.fc20.x86_64
+fc20,fc24: iscsi-initiator-utils-6.2.0.873-17.fc20.x86_64
+fc20,fc24: jbigkit-libs-2.0-9.fc20.x86_64
+fc20,fc24: json-c-0.11-3.fc20.x86_64
+fc20,fc24: kbd-1.15.5-12.fc20.x86_64
+fc20,fc24: kbd-legacy-1.15.5-12.fc20.noarch
+fc20,fc24: kbd-misc-1.15.5-12.fc20.noarch
+fc20,fc24: keyutils
+fc20,fc24: keyutils-libs
+fc20,fc24: keyutils-libs-devel
+fc20,fc24: kmod-15-1.fc20.x86_64
+fc20,fc24: kmod-libs-15-1.fc20.x86_64
+fc20,fc24: kpartx-0.4.9-55.fc20.x86_64
+fc20,fc24: krb5-devel-1.11.3-39.fc20.x86_64
+fc20,fc24: krb5-libs-1.11.3-39.fc20.x86_64
+fc20,fc24: lcms-libs-1.19-10.fc20.x86_64
+fc20,fc24: ldns-1.6.16-6.fc20.x86_64
+fc20,fc24: less-458-4.fc20.x86_64
+fc20,fc24: leveldb-1.12.0-5.fc20.x86_64
+fc20,fc24: libacl-2.2.52-4.fc20.x86_64
+fc20,fc24: libaio-0.3.109-8.fc20.x86_64
+fc20,fc24: libassuan-2.1.0-2.fc20.x86_64
+fc20,fc24: libattr-2.4.47-3.fc20.x86_64
+fc20,fc24: libblkid-2.24-2.fc20.x86_64
+fc20,fc24: libcap-2.22-7.fc20.x86_64
+fc20,fc24: libcap-ng-0.7.3-6.fc20.x86_64
+fc20,fc24: libcgroup-0.38-7.fc20.x86_64
+fc20,fc24: libcom_err-1.42.8-3.fc20.x86_64
+fc20,fc24: libcom_err-devel-1.42.8-3.fc20.x86_64
+fc20,fc24: libcroco-0.6.8-3.fc20.x86_64
+fc20,fc24: libcurl-7.32.0-3.fc20.x86_64
+fc20,fc24: libdaemon-0.14-6.fc20.x86_64
+fc20,fc24: libdb-5.3.28-1.fc20.x86_64
+fc20,fc24: libdb-utils-5.3.28-1.fc20.x86_64
+fc20,fc24: libedit-3.1-2.20130601cvs.fc20.x86_64
+fc20,fc24: libestr-0.1.5-2.fc20.x86_64
+fc20,fc24: libevent-2.0.21-3.fc20.x86_64
+fc20,fc24: libffi-3.0.13-5.fc20.x86_64
 ub16: libffi-dev
-fc20: libgcc-4.8.2-7.fc20.x86_64
-fc20: libgcrypt-1.5.3-2.fc20.x86_64
-fc20: libgomp-4.8.2-7.fc20.x86_64
-fc20: libgpg-error-1.12-1.fc20.x86_64
-fc20: libibverbs-1.1.7-3.fc20.x86_64
-fc20: libicu-50.1.2-10.fc20.x86_64
-fc20: libidn-1.28-2.fc20.x86_64
-fc20: libiscsi-1.9.0-4.fc20.x86_64
-fc20: libjpeg-turbo-1.3.0-1.fc20.x86_64
-fc20: libmetalink-0.1.2-4.fc20.x86_64
-fc20: libmount-2.24-2.fc20.x86_64
-fc20: libmpc-1.0.1-2.fc20.x86_64
-fc20: libnfsidmap-0.25-7.fc20.x86_64
-fc20: libnl3-3.2.21-2.fc20.x86_64
-fc20: libpcap-1.5.3-1.fc20.x86_64
-fc20: libpciaccess-0.13.2-1.fc20.x86_64
-fc20: libpipeline-1.2.4-2.fc20.x86_64
-fc20: libpng-1.6.3-3.fc20.x86_64
+fc20,fc24: libgcc-4.8.2-7.fc20.x86_64
+fc20,fc24: libgcrypt-1.5.3-2.fc20.x86_64
+fc20,fc24: libgomp-4.8.2-7.fc20.x86_64
+fc20,fc24: libgpg-error-1.12-1.fc20.x86_64
+fc20,fc24: libibverbs-1.1.7-3.fc20.x86_64
+fc20,fc24: libicu-50.1.2-10.fc20.x86_64
+fc20,fc24: libidn-1.28-2.fc20.x86_64
+fc20,fc24: libiscsi-1.9.0-4.fc20.x86_64
+fc20,fc24: libjpeg-turbo-1.3.0-1.fc20.x86_64
+fc20,fc24: libmetalink-0.1.2-4.fc20.x86_64
+fc20,fc24: libmount-2.24-2.fc20.x86_64
+fc20,fc24: libmpc-1.0.1-2.fc20.x86_64
+fc20,fc24: libnfsidmap-0.25-7.fc20.x86_64
+fc20,fc24: libnl3-3.2.21-2.fc20.x86_64
+fc20,fc24: libpcap-1.5.3-1.fc20.x86_64
+fc20,fc24: libpciaccess-0.13.2-1.fc20.x86_64
+fc20,fc24: libpipeline-1.2.4-2.fc20.x86_64
+fc20,fc24: libpng-1.6.3-3.fc20.x86_64
 ub16: libpng12-dev
-fc20: libpwquality-1.2.3-1.fc20.x86_64
-fc20: libqb-0.16.0-1.fc20.x86_64
-fc20: librdmacm-1.0.17-2.fc20.x86_64
-fc20: libselinux-2.2.1-6.fc20.x86_64
-fc20: libselinux-devel-2.2.1-6.fc20.x86_64
-fc20: libselinux-python-2.2.1-6.fc20.x86_64
-fc20: libselinux-utils-2.2.1-6.fc20.x86_64
-fc20: libsemanage-2.1.10-14.fc20.x86_64
-fc20: libsemanage-python-2.1.10-14.fc20.x86_64
-fc20: libsepol-2.1.9-2.fc20.x86_64
-fc20: libsepol-devel-2.1.9-2.fc20.x86_64
-fc20: libss-1.42.8-3.fc20.x86_64
-fc20: libssh2-1.4.3-8.fc20.x86_64
-fc20: libstdc++-4.8.2-1.fc20.x86_64
-fc20: libtasn1-3.3-2.fc20.x86_64
-fc20: libtiff-4.0.3-12.fc20.x86_64
-fc20: libtirpc-0.2.4-1.0.fc20.x86_64
-fc20: libunistring-0.9.3-9.fc20.x86_64
-fc20: libuser-0.60-3.fc20.x86_64
-fc20: libutempter-1.1.6-3.fc20.x86_64
-fc20: libuuid-2.24-2.fc20.x86_64
-fc20: libuv-0.10.21-1.fc20.x86_64
-fc20: libuv-devel-0.10.21-1.fc20.x86_64
-fc20: libverto-0.2.5-3.fc20.x86_64
-fc20: libverto-devel-0.2.5-3.fc20.x86_64
-fc20: libvirt-1.1.3.3-2.fc20.x86_64
+fc24: libpng-devel
+fc20,fc24: libpwquality-1.2.3-1.fc20.x86_64
+fc20,fc24: libqb-0.16.0-1.fc20.x86_64
+fc20,fc24: librdmacm-1.0.17-2.fc20.x86_64
+fc20,fc24: libselinux-2.2.1-6.fc20.x86_64
+fc20,fc24: libselinux-devel-2.2.1-6.fc20.x86_64
+fc20,fc24: libselinux-python-2.2.1-6.fc20.x86_64
+fc20,fc24: libselinux-utils-2.2.1-6.fc20.x86_64
+fc20,fc24: libsemanage-2.1.10-14.fc20.x86_64
+fc20,fc24: libsemanage-python-2.1.10-14.fc20.x86_64
+fc20,fc24: libsepol-2.1.9-2.fc20.x86_64
+fc20,fc24: libsepol-devel-2.1.9-2.fc20.x86_64
+fc20,fc24: libss-1.42.8-3.fc20.x86_64
+fc20,fc24: libssh2-1.4.3-8.fc20.x86_64
+fc20,fc24: libstdc++-4.8.2-1.fc20.x86_64
+fc20,fc24: libtasn1-3.3-2.fc20.x86_64
+fc20,fc24: libtiff-4.0.3-12.fc20.x86_64
+fc20,fc24: libtirpc-0.2.4-1.0.fc20.x86_64
+fc20,fc24: libunistring-0.9.3-9.fc20.x86_64
+fc20,fc24: libuser-0.60-3.fc20.x86_64
+fc20,fc24: libutempter-1.1.6-3.fc20.x86_64
+fc20,fc24: libuuid-2.24-2.fc20.x86_64
+fc20,fc24: libuv-0.10.21-1.fc20.x86_64
+fc20,fc24: libuv-devel-0.10.21-1.fc20.x86_64
+fc20,fc24: libverto-0.2.5-3.fc20.x86_64
+fc20,fc24: libverto-devel-0.2.5-3.fc20.x86_64
+fc20,fc24: libvirt-1.1.3.3-2.fc20.x86_64
 ub16: libvirt-bin
-fc20: libvirt-client-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-config-network-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-config-nwfilter-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-interface-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-libxl-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-lxc-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-network-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-nodedev-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-nwfilter-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-qemu-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-secret-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-storage-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-uml-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-vbox-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-driver-xen-1.1.3.3-2.fc20.x86_64
-fc20: libvirt-daemon-lxc-1.1.3.3-2.fc20.x86_64
-fc20: libwebp-0.3.1-2.fc20.x86_64
-fc20: libwsman1-2.3.6-8.fc20.x86_64
-fc20: libxml2-2.9.1-2.fc20.x86_64
-fc20: libxslt-1.1.28-5.fc20.x86_64
-fc20: libyaml-0.1.4-5.fc20.x86_64
-fc20: linux-atm-libs-2.5.1-8.fc20.x86_64
-fc20: logrotate-3.8.7-1.fc20.x86_64
-fc20: lua-5.2.2-5.fc20.x86_64
-fc20: lvm2-2.02.103-5.fc20.x86_64
-fc20: lvm2-libs-2.02.103-5.fc20.x86_64
-fc20: lxc-0.9.0-2.fc20.x86_64
-fc20: lxc-extra-0.9.0-2.fc20.x86_64
-fc20: lxc-libs-0.9.0-2.fc20.x86_64
-fc20: lzo-2.06-5.fc20.x86_64
-fc20: lzop-1.03-9.fc20.x86_64
-fc20: m2crypto-0.21.1-13.fc20.x86_64
-fc20: make-4.0-3.1.fc22.x86_64
-fc20: man-db-2.6.5-2.fc20.x86_64
-fc20: mozjs17-17.0.0-8.fc20.x86_64
-fc20: mpfr-3.1.2-4.fc20.x86_64
-fc20: mtools-4.0.18-4.fc20.x86_64
-fc20: nbd
-fc20: ncurses-5.9-12.20130511.fc20.x86_64
-fc20: ncurses-base-5.9-12.20130511.fc20.noarch
-fc20: ncurses-libs-5.9-12.20130511.fc20.x86_64
-fc20: netcf-libs-0.2.3-5.fc20.x86_64
-fc20: net-snmp-libs-5.7.2-16.fc20.x86_64
-fc20: nettle-2.7.1-3.fc20.x86_64
-fc20: net-tools-2.0-0.15.20131119git.fc20.x86_64
-fc20: nfs-utils-1.2.9-3.0.fc20.x86_64
-fc20: nmap-ncat-6.40-2.fc20.x86_64
-fc20: node-gyp-0.10.6-2.fc20.noarch
-fc20: nodejs-0.10.24-1.fc20.x86_64
-fc20: nodejs-abbrev-1.0.4-7.fc20.noarch
-fc20: nodejs-ansi-0.2.1-1.fc20.noarch
-fc20: nodejs-archy-0.0.2-9.fc20.noarch
-fc20: nodejs-asn1-0.1.11-4.fc20.noarch
-fc20: nodejs-assert-plus-0.1.4-1.fc20.noarch
-fc20: nodejs-async-0.2.9-3.fc20.noarch
-fc20: nodejs-aws-sign-0.3.0-2.fc20.noarch
-fc20: nodejs-block-stream-0.0.7-1.fc20.noarch
-fc20: nodejs-boom-0.4.2-3.fc20.noarch
-fc20: nodejs-child-process-close-0.1.1-3.fc20.noarch
-fc20: nodejs-chmodr-0.1.0-5.fc20.noarch
-fc20: nodejs-chownr-0.0.1-10.fc20.noarch
-fc20: nodejs-cmd-shim-1.1.0-4.fc20.noarch
-fc20: nodejs-combined-stream-0.0.4-4.fc20.noarch
-fc20: nodejs-config-chain-1.1.7-2.fc20.noarch
-fc20: nodejs-cookie-jar-0.3.0-2.fc20.noarch
-fc20: nodejs-couch-login-0.1.18-1.fc20.noarch
-fc20: nodejs-cryptiles-0.2.2-1.fc20.noarch
-fc20: nodejs-ctype-0.5.3-4.fc20.noarch
-fc20: nodejs-delayed-stream-0.0.5-6.fc20.noarch
-fc20: nodejs-devel-0.10.24-1.fc20.x86_64
-fc20: nodejs-editor-0.0.4-3.fc20.noarch
-fc20: nodejs-forever-agent-0.5.0-2.fc20.noarch
-fc20: nodejs-form-data-0.1.1-1.fc20.noarch
-fc20: nodejs-fstream-0.1.24-1.fc20.noarch
-fc20: nodejs-fstream-ignore-0.0.7-2.fc20.noarch
-fc20: nodejs-fstream-npm-0.1.5-2.fc20.noarch
-fc20: nodejs-github-url-from-git-1.1.1-3.fc20.noarch
-fc20: nodejs-glob-3.2.6-1.fc20.noarch
-fc20: nodejs-graceful-fs-2.0.0-3.fc20.noarch
-fc20: nodejs-hawk-1.0.0-1.fc20.noarch
-fc20: nodejs-hoek-0.9.1-2.fc20.noarch
-fc20: nodejs-http-signature-0.10.0-4.fc20.noarch
-fc20: nodejs-inherits-2.0.0-4.fc20.noarch
-fc20: nodejs-ini-1.1.0-4.fc20.noarch
-fc20: nodejs-init-package-json-0.0.10-2.fc20.noarch
-fc20: nodejs-json-stringify-safe-5.0.0-2.fc20.noarch
-fc20: nodejs-lockfile-0.4.2-1.fc20.noarch
-fc20: nodejs-lru-cache-2.3.0-4.fc20.noarch
-fc20: nodejs-mime-1.2.11-1.fc20.noarch
-fc20: nodejs-minimatch-0.2.12-3.fc20.noarch
-fc20: nodejs-mkdirp-0.3.5-4.fc20.noarch
-fc20: nodejs-mute-stream-0.0.4-1.fc20.noarch
-fc20: nodejs-node-uuid-1.4.1-1.fc20.noarch
-fc20: nodejs-nopt-2.1.2-1.fc20.noarch
-fc20: nodejs-normalize-package-data-0.2.1-1.fc20.noarch
+fc20,fc24: libvirt-client-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-config-network-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-config-nwfilter-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-interface-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-libxl-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-lxc-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-network-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-nodedev-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-nwfilter-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-qemu-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-secret-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-storage-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-uml-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-vbox-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-driver-xen-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libvirt-daemon-lxc-1.1.3.3-2.fc20.x86_64
+fc20,fc24: libwebp-0.3.1-2.fc20.x86_64
+fc20,fc24: libwsman1-2.3.6-8.fc20.x86_64
+fc20,fc24: libxml2-2.9.1-2.fc20.x86_64
+fc20,fc24: libxslt-1.1.28-5.fc20.x86_64
+fc20,fc24: libyaml-0.1.4-5.fc20.x86_64
+fc20,fc24: linux-atm-libs-2.5.1-8.fc20.x86_64
+fc20,fc24: logrotate-3.8.7-1.fc20.x86_64
+fc20,fc24: lua-5.2.2-5.fc20.x86_64
+fc20,fc24: lvm2-2.02.103-5.fc20.x86_64
+fc20,fc24: lvm2-libs-2.02.103-5.fc20.x86_64
+fc20,fc24: lxc-0.9.0-2.fc20.x86_64
+fc20,fc24: lxc-extra-0.9.0-2.fc20.x86_64
+fc20,fc24: lxc-libs-0.9.0-2.fc20.x86_64
+fc20,fc24: lzo-2.06-5.fc20.x86_64
+fc20,fc24: lzop-1.03-9.fc20.x86_64
+fc20,fc24: m2crypto-0.21.1-13.fc20.x86_64
+fc20,fc24: make-4.0-3.1.fc22.x86_64
+fc20,fc24: man-db-2.6.5-2.fc20.x86_64
+fc20,fc24: mozjs17-17.0.0-8.fc20.x86_64
+fc20,fc24: mpfr-3.1.2-4.fc20.x86_64
+fc20,fc24: mtools-4.0.18-4.fc20.x86_64
+fc20,fc24: nbd
+fc20,fc24: ncurses-5.9-12.20130511.fc20.x86_64
+fc20,fc24: ncurses-base-5.9-12.20130511.fc20.noarch
+fc20,fc24: ncurses-libs-5.9-12.20130511.fc20.x86_64
+fc20,fc24: netcf-libs-0.2.3-5.fc20.x86_64
+fc20,fc24: net-snmp-libs-5.7.2-16.fc20.x86_64
+fc20,fc24: nettle-2.7.1-3.fc20.x86_64
+fc20,fc24: net-tools-2.0-0.15.20131119git.fc20.x86_64
+fc20,fc24: nfs-utils-1.2.9-3.0.fc20.x86_64
+fc20,fc24: nmap-ncat-6.40-2.fc20.x86_64
+fc20,fc24: node-gyp-0.10.6-2.fc20.noarch
+fc20,fc24: nodejs-0.10.24-1.fc20.x86_64
+fc20,fc24: nodejs-abbrev-1.0.4-7.fc20.noarch
+fc20,fc24: nodejs-ansi-0.2.1-1.fc20.noarch
+fc20,fc24: nodejs-archy-0.0.2-9.fc20.noarch
+fc20,fc24: nodejs-asn1-0.1.11-4.fc20.noarch
+fc20,fc24: nodejs-assert-plus-0.1.4-1.fc20.noarch
+fc20,fc24: nodejs-async-0.2.9-3.fc20.noarch
+fc20,fc24: nodejs-aws-sign-0.3.0-2.fc20.noarch
+fc20,fc24: nodejs-block-stream-0.0.7-1.fc20.noarch
+fc20,fc24: nodejs-boom-0.4.2-3.fc20.noarch
+fc20,fc24: nodejs-child-process-close-0.1.1-3.fc20.noarch
+fc20,fc24: nodejs-chmodr-0.1.0-5.fc20.noarch
+fc20,fc24: nodejs-chownr-0.0.1-10.fc20.noarch
+fc20,fc24: nodejs-cmd-shim-1.1.0-4.fc20.noarch
+fc20,fc24: nodejs-combined-stream-0.0.4-4.fc20.noarch
+fc20,fc24: nodejs-config-chain-1.1.7-2.fc20.noarch
+fc20,fc24: nodejs-cookie-jar-0.3.0-2.fc20.noarch
+fc20,fc24: nodejs-couch-login-0.1.18-1.fc20.noarch
+fc20,fc24: nodejs-cryptiles-0.2.2-1.fc20.noarch
+fc20,fc24: nodejs-ctype-0.5.3-4.fc20.noarch
+fc20,fc24: nodejs-delayed-stream-0.0.5-6.fc20.noarch
+fc20,fc24: nodejs-devel-0.10.24-1.fc20.x86_64
+fc20,fc24: nodejs-editor-0.0.4-3.fc20.noarch
+fc20,fc24: nodejs-forever-agent-0.5.0-2.fc20.noarch
+fc20,fc24: nodejs-form-data-0.1.1-1.fc20.noarch
+fc20,fc24: nodejs-fstream-0.1.24-1.fc20.noarch
+fc20,fc24: nodejs-fstream-ignore-0.0.7-2.fc20.noarch
+fc20,fc24: nodejs-fstream-npm-0.1.5-2.fc20.noarch
+fc20,fc24: nodejs-github-url-from-git-1.1.1-3.fc20.noarch
+fc20,fc24: nodejs-glob-3.2.6-1.fc20.noarch
+fc20,fc24: nodejs-graceful-fs-2.0.0-3.fc20.noarch
+fc20,fc24: nodejs-hawk-1.0.0-1.fc20.noarch
+fc20,fc24: nodejs-hoek-0.9.1-2.fc20.noarch
+fc20,fc24: nodejs-http-signature-0.10.0-4.fc20.noarch
+fc20,fc24: nodejs-inherits-2.0.0-4.fc20.noarch
+fc20,fc24: nodejs-ini-1.1.0-4.fc20.noarch
+fc20,fc24: nodejs-init-package-json-0.0.10-2.fc20.noarch
+fc20,fc24: nodejs-json-stringify-safe-5.0.0-2.fc20.noarch
+fc20,fc24: nodejs-lockfile-0.4.2-1.fc20.noarch
+fc20,fc24: nodejs-lru-cache-2.3.0-4.fc20.noarch
+fc20,fc24: nodejs-mime-1.2.11-1.fc20.noarch
+fc20,fc24: nodejs-minimatch-0.2.12-3.fc20.noarch
+fc20,fc24: nodejs-mkdirp-0.3.5-4.fc20.noarch
+fc20,fc24: nodejs-mute-stream-0.0.4-1.fc20.noarch
+fc20,fc24: nodejs-node-uuid-1.4.1-1.fc20.noarch
+fc20,fc24: nodejs-nopt-2.1.2-1.fc20.noarch
+fc20,fc24: nodejs-normalize-package-data-0.2.1-1.fc20.noarch
 fc20: nodejs-npmconf-0.1.2-1.fc20.noarch
-fc20: nodejs-npmlog-0.0.4-2.fc20.noarch
-fc20: nodejs-npm-registry-client-0.2.28-1.fc20.noarch
-fc20: nodejs-npm-user-validate-0.0.3-2.fc20.noarch
-fc20: nodejs-oauth-sign-0.3.0-2.fc20.noarch
-fc20: nodejs-once-1.1.1-6.fc20.noarch
-fc20: nodejs-opener-1.3.0-8.fc20.noarch
-fc20: nodejs-osenv-0.0.3-6.fc20.noarch
-fc20: nodejs-packaging-4-1.fc20.noarch
-fc20: nodejs-promzard-0.2.0-7.fc20.noarch
-fc20: nodejs-proto-list-1.2.2-6.fc20.noarch
-fc20: nodejs-qs-0.6.5-3.fc20.noarch
-fc20: nodejs-read-1.0.5-1.fc20.noarch
-fc20: nodejs-read-installed-0.2.3-1.fc20.noarch
-fc20: nodejs-read-package-json-1.1.3-1.fc20.noarch
-fc20: nodejs-request-2.25.0-1.fc20.noarch
-fc20: nodejs-retry-0.6.0-6.fc20.noarch
-fc20: nodejs-rimraf-2.2.2-1.fc20.noarch
-fc20: nodejs-semver-2.1.0-1.fc20.noarch
-fc20: nodejs-sha-1.2.1-1.fc20.noarch
-fc20: nodejs-sigmund-1.0.0-6.fc20.noarch
-fc20: nodejs-slide-1.1.5-1.fc20.noarch
-fc20: nodejs-sntp-0.2.4-2.fc20.noarch
-fc20: nodejs-tar-0.1.18-1.fc20.noarch
-fc20: nodejs-tunnel-agent-0.3.0-2.fc20.noarch
-fc20: nodejs-uid-number-0.0.3-8.fc20.noarch
-fc20: nodejs-which-1.0.5-9.fc20.noarch
+fc20,fc24: nodejs-npmlog-0.0.4-2.fc20.noarch
+fc20,fc24: nodejs-npm-registry-client-0.2.28-1.fc20.noarch
+fc20,fc24: nodejs-npm-user-validate-0.0.3-2.fc20.noarch
+fc20,fc24: nodejs-oauth-sign-0.3.0-2.fc20.noarch
+fc20,fc24: nodejs-once-1.1.1-6.fc20.noarch
+fc20,fc24: nodejs-opener-1.3.0-8.fc20.noarch
+fc20,fc24: nodejs-osenv-0.0.3-6.fc20.noarch
+fc20,fc24: nodejs-packaging-4-1.fc20.noarch
+fc20,fc24: nodejs-promzard-0.2.0-7.fc20.noarch
+fc20,fc24: nodejs-proto-list-1.2.2-6.fc20.noarch
+fc20,fc24: nodejs-qs-0.6.5-3.fc20.noarch
+fc20,fc24: nodejs-read-1.0.5-1.fc20.noarch
+fc20,fc24: nodejs-read-installed-0.2.3-1.fc20.noarch
+fc20,fc24: nodejs-read-package-json-1.1.3-1.fc20.noarch
+fc20,fc24: nodejs-request-2.25.0-1.fc20.noarch
+fc20,fc24: nodejs-retry-0.6.0-6.fc20.noarch
+fc20,fc24: nodejs-rimraf-2.2.2-1.fc20.noarch
+fc20,fc24: nodejs-semver-2.1.0-1.fc20.noarch
+fc20,fc24: nodejs-sha-1.2.1-1.fc20.noarch
+fc20,fc24: nodejs-sigmund-1.0.0-6.fc20.noarch
+fc20,fc24: nodejs-slide-1.1.5-1.fc20.noarch
+fc20,fc24: nodejs-sntp-0.2.4-2.fc20.noarch
+fc20,fc24: nodejs-tar-0.1.18-1.fc20.noarch
+fc20,fc24: nodejs-tunnel-agent-0.3.0-2.fc20.noarch
+fc20,fc24: nodejs-uid-number-0.0.3-8.fc20.noarch
+fc20,fc24: nodejs-which-1.0.5-9.fc20.noarch
 fc20: npm
 ub16: npm
-fc20: nspr-4.10.1-1.fc20.x86_64
-fc20: nss-3.15.2-3.fc20.x86_64
-fc20: nss-softokn-3.15.2-2.fc20.x86_64
-fc20: nss-softokn-freebl-3.17.1-2.fc20.x86_64
-fc20: nss-sysinit-3.15.2-3.fc20.x86_64
-fc20: nss-tools-3.15.2-3.fc20.x86_64
-fc20: nss-util-3.15.2-2.fc20.x86_64
-fc20: numactl-libs-2.0.9-1.fc20.x86_64
-fc20: numad-0.5-12.20130814git.fc20.x86_64
-fc20: openldap-2.4.36-4.fc20.x86_64
-fc20: openpgm-5.2.122-2.fc20.x86_64
-fc20: openssh
-fc20: openssh-clients
-fc20: openssh-server
-fc20: openssl
+fc20,fc24: nspr-4.10.1-1.fc20.x86_64
+fc20,fc24: nss-3.15.2-3.fc20.x86_64
+fc20,fc24: nss-softokn-3.15.2-2.fc20.x86_64
+fc20,fc24: nss-softokn-freebl-3.17.1-2.fc20.x86_64
+fc20,fc24: nss-sysinit-3.15.2-3.fc20.x86_64
+fc20,fc24: nss-tools-3.15.2-3.fc20.x86_64
+fc20,fc24: nss-util-3.15.2-2.fc20.x86_64
+fc20,fc24: numactl-libs-2.0.9-1.fc20.x86_64
+fc20,fc24: numad-0.5-12.20130814git.fc20.x86_64
+fc20,fc24: openldap-2.4.36-4.fc20.x86_64
+fc20,fc24: openpgm-5.2.122-2.fc20.x86_64
+fc20,fc24: openssh
+fc20,fc24: openssh-clients
+fc20,fc24: openssh-server
+fc20,fc24: openssl
 ub16: libssl-dev
-fc20: openssl-devel
-fc20: openssl-libs
-fc20: os-prober-1.58-4.fc20.x86_64
-fc20: p11-kit-0.20.1-1.fc20.x86_64
-fc20: p11-kit-trust-0.20.1-1.fc20.x86_64
-fc20: pam-1.1.8-1.fc20.x86_64
-fc20: parted-3.1-13.fc20.x86_64
-fc20: passwd-0.79-2.fc20.x86_64
-fc20: pciutils-3.2.1-1.fc20.x86_64
-fc20: pciutils-libs-3.2.1-1.fc20.x86_64
-fc20: pcre-8.33-4.fc20.x86_64
-fc20: pcre-devel-8.33-4.fc20.x86_64
-fc20: perl-5.18.2-289.fc20.x86_64
-fc20: perl-Carp-1.26-245.fc20.noarch
-fc20: perl-constant-1.27-292.fc20.noarch
-fc20: perl-Encode-2.54-2.fc20.x86_64
-fc20: perl-Exporter-5.68-293.fc20.noarch
-fc20: perl-File-Path-2.09-292.fc20.noarch
-fc20: perl-File-Temp-0.23.01-4.fc20.noarch
-fc20: perl-Filter-1.49-5.fc20.x86_64
-fc20: perl-Getopt-Long-2.42-1.fc20.noarch
-fc20: perl-HTTP-Tiny-0.034-4.fc20.noarch
-fc20: perl-libs-5.18.2-289.fc20.x86_64
-fc20: perl-macros-5.18.2-289.fc20.x86_64
-fc20: perl-Module-CoreList-3.03-289.fc20.noarch
-fc20: perl-parent-0.228-1.fc20.noarch
-fc20: perl-PathTools-3.40-291.fc20.x86_64
-fc20: perl-Pod-Escapes-1.04-289.fc20.noarch
-fc20: perl-podlators-2.5.1-291.fc20.noarch
-fc20: perl-Pod-Perldoc-3.20-7.fc20.noarch
-fc20: perl-Pod-Simple-3.28-292.fc20.noarch
-fc20: perl-Pod-Usage-1.63-4.fc20.noarch
-fc20: perl-Scalar-List-Utils-1.31-293.fc20.x86_64
-fc20: perl-Socket-2.013-1.fc20.x86_64
-fc20: perl-srpm-macros-1-10.fc20.noarch
-fc20: perl-Storable-2.45-2.fc20.x86_64
-fc20: perl-Text-ParseWords-3.29-3.fc20.noarch
-fc20: perl-threads-1.89-1.fc20.x86_64
-fc20: perl-threads-shared-1.45-1.fc20.x86_64
-fc20: perl-Time-HiRes-1.9726-1.fc20.x86_64
-fc20: perl-Time-Local-1.2300-291.fc20.noarch
-fc20: perl-version-0.99.04-2.fc20.x86_64
-fc20: php
-fc20: php-gd
-fc20: pinentry-0.8.1-11.fc20.x86_64
-fc20: pkgconfig-0.28-3.fc20.x86_64
+fc20,fc24: openssl-devel
+fc20,fc24: openssl-libs
+fc20,fc24: os-prober-1.58-4.fc20.x86_64
+fc20,fc24: p11-kit-0.20.1-1.fc20.x86_64
+fc20,fc24: p11-kit-trust-0.20.1-1.fc20.x86_64
+fc20,fc24: pam-1.1.8-1.fc20.x86_64
+fc20,fc24: parted-3.1-13.fc20.x86_64
+fc20,fc24: passwd-0.79-2.fc20.x86_64
+fc20,fc24: pciutils-3.2.1-1.fc20.x86_64
+fc20,fc24: pciutils-libs-3.2.1-1.fc20.x86_64
+fc20,fc24: pcre-8.33-4.fc20.x86_64
+fc20,fc24: pcre-devel-8.33-4.fc20.x86_64
+fc20,fc24: perl-5.18.2-289.fc20.x86_64
+fc20,fc24: perl-Carp-1.26-245.fc20.noarch
+fc20,fc24: perl-constant-1.27-292.fc20.noarch
+fc20,fc24: perl-Encode-2.54-2.fc20.x86_64
+fc20,fc24: perl-Exporter-5.68-293.fc20.noarch
+fc20,fc24: perl-File-Path-2.09-292.fc20.noarch
+fc20,fc24: perl-File-Temp-0.23.01-4.fc20.noarch
+fc20,fc24: perl-Filter-1.49-5.fc20.x86_64
+fc20,fc24: perl-Getopt-Long-2.42-1.fc20.noarch
+fc20,fc24: perl-HTTP-Tiny-0.034-4.fc20.noarch
+fc20,fc24: perl-libs-5.18.2-289.fc20.x86_64
+fc20,fc24: perl-macros-5.18.2-289.fc20.x86_64
+fc20,fc24: perl-Module-CoreList-3.03-289.fc20.noarch
+fc20,fc24: perl-parent-0.228-1.fc20.noarch
+fc20,fc24: perl-PathTools-3.40-291.fc20.x86_64
+fc20,fc24: perl-Pod-Escapes-1.04-289.fc20.noarch
+fc20,fc24: perl-podlators-2.5.1-291.fc20.noarch
+fc20,fc24: perl-Pod-Perldoc-3.20-7.fc20.noarch
+fc20,fc24: perl-Pod-Simple-3.28-292.fc20.noarch
+fc20,fc24: perl-Pod-Usage-1.63-4.fc20.noarch
+fc20,fc24: perl-Scalar-List-Utils-1.31-293.fc20.x86_64
+fc20,fc24: perl-Socket-2.013-1.fc20.x86_64
+fc20,fc24: perl-srpm-macros-1-10.fc20.noarch
+fc20,fc24: perl-Storable-2.45-2.fc20.x86_64
+fc20,fc24: perl-Text-ParseWords-3.29-3.fc20.noarch
+fc20,fc24: perl-threads-1.89-1.fc20.x86_64
+fc20,fc24: perl-threads-shared-1.45-1.fc20.x86_64
+fc20,fc24: perl-Time-HiRes-1.9726-1.fc20.x86_64
+fc20,fc24: perl-Time-Local-1.2300-291.fc20.noarch
+fc20,fc24: perl-version-0.99.04-2.fc20.x86_64
+fc20,fc24: php
+fc20,fc24: php-gd
+fc20,fc24: pinentry-0.8.1-11.fc20.x86_64
+fc20,fc24: pkgconfig-0.28-3.fc20.x86_64
 fc20: pm-utils-1.4.1-26.fc20.x86_64
-fc20: policycoreutils-2.2.2-3.fc20.x86_64
-fc20: policycoreutils-python-2.2.2-3.fc20.x86_64
-fc20: polkit-0.112-2.fc20.x86_64
-fc20: polkit-pkla-compat-0.1-3.fc20.x86_64
-fc20: popt-1.13-15.fc20.x86_64
-fc20: procps-ng-3.3.8-14.fc20.x86_64
-fc20: pth-2.0.7-21.fc20.x86_64
-fc20: pygpgme-0.3-8.fc20.x86_64
-fc20: pyliblzma-0.5.3-10.fc20.x86_64
-fc20: python-2.7.5-9.fc20.x86_64
-fc20: python3-3.3.2-8.fc20.x86_64
-fc20: python3-libs-3.3.2-8.fc20.x86_64
-fc20: python3-magic
-fc20: python3-lxc-0.9.0-2.fc20.x86_64
-fc20: python-babel-1.3-2.fc20.noarch
-fc20: python-backports-1.0-3.fc20.x86_64
-fc20: python-backports-ssl_match_hostname-3.4.0.2-1.fc20.noarch
-fc20: python-boto-2.13.3-1.fc20.noarch
-fc20: python-chardet-2.0.1-7.fc20.noarch
-fc20: python-cheetah-2.4.4-5.fc20.x86_64
-fc20: python-configobj-4.7.2-7.fc20.noarch
-fc20: python-crypto-2.6.1-1.fc20.x86_64
-fc20: python-iniparse-0.4-9.fc20.noarch
-fc20: python-IPy-0.75-6.fc20.noarch
-fc20: python-jinja2-2.7.1-1.fc20.noarch
-fc20: python-kitchen-1.1.1-5.fc20.noarch
-fc20: python-libs-2.7.5-9.fc20.x86_64
-fc20: python-markdown-2.3.1-3.fc20.noarch
-fc20: python-markupsafe-0.18-1.fc20.x86_64
-fc20: python-msgpack-0.1.13-4.fc20.x86_64
-fc20: python-pillow-2.2.1-2.fc20.x86_64
-fc20: python-prettytable-0.6.1-3.fc20.noarch
-fc20: python-psutil-1.0.1-1.fc20.x86_64
-fc20: python-pycurl-7.19.0-17.20120408git9b8f4e38.fc20.x86_64
-fc20: python-pygments-1.4-9.fc20.noarch
-fc20: python-requests-1.2.3-5.fc20.noarch
-fc20: python-six-1.4.1-1.fc20.noarch
-fc20: python-urlgrabber-3.9.1-32.fc20.noarch
-fc20: python-urllib3-1.7-4.fc20.noarch
-fc20: python-zmq-13.0.2-1.fc20.x86_64
-fc20: pyxattr-0.5.1-4.fc20.x86_64
-fc20: PyYAML-3.10-9.fc20.x86_64
-fc20: qemu-img-1.6.1-3.fc20.x86_64
-fc20: qrencode-libs-3.4.2-1.fc20.x86_64
-fc20: quota-4.01-10.fc20.x86_64
-fc20: quota-nls-4.01-10.fc20.noarch
-fc20: radvd-1.9.2-4.fc20.x86_64
-fc20: readline-6.2-8.fc20.x86_64
-fc20: redhat-rpm-config-9.1.0-54.fc20.noarch
-fc20: rootfiles-8.1-16.fc20.noarch
-fc20: rpcbind-0.2.1-0.2.fc20.x86_64
-fc20: rpm-4.11.3-1.fc20.x86_64
-fc20: rpm-build-libs-4.11.3-1.fc20.x86_64
-fc20: rpm-libs-4.11.3-1.fc20.x86_64
-fc20: rpm-python-4.11.3-1.fc20.x86_64
-fc20: rsync-3.1.0-1pre1.fc20.x86_64
-fc20: rsyslog-7.4.2-2.fc20.x86_64
-fc20: salt-master-2015.5.0-1.fc20.noarch
+fc20,fc24: policycoreutils-2.2.2-3.fc20.x86_64
+fc20,fc24: policycoreutils-python-2.2.2-3.fc20.x86_64
+fc20,fc24: polkit-0.112-2.fc20.x86_64
+fc20,fc24: polkit-pkla-compat-0.1-3.fc20.x86_64
+fc20,fc24: popt-1.13-15.fc20.x86_64
+fc20,fc24: procps-ng-3.3.8-14.fc20.x86_64
+fc20,fc24: pth-2.0.7-21.fc20.x86_64
+fc20,fc24: pygpgme-0.3-8.fc20.x86_64
+fc20,fc24: pyliblzma-0.5.3-10.fc20.x86_64
+fc20,fc24: python-2.7.5-9.fc20.x86_64
+fc20,fc24: python3-3.3.2-8.fc20.x86_64
+fc20,fc24: python3-libs-3.3.2-8.fc20.x86_64
+fc20,fc24: python3-magic
+fc20,fc24: python3-lxc-0.9.0-2.fc20.x86_64
+fc20,fc24: python-babel-1.3-2.fc20.noarch
+fc20,fc24: python-backports-1.0-3.fc20.x86_64
+fc20,fc24: python-backports-ssl_match_hostname-3.4.0.2-1.fc20.noarch
+fc20,fc24: python-boto-2.13.3-1.fc20.noarch
+fc20,fc24: python-chardet-2.0.1-7.fc20.noarch
+fc20,fc24: python-cheetah-2.4.4-5.fc20.x86_64
+fc20,fc24: python-configobj-4.7.2-7.fc20.noarch
+fc20,fc24: python-crypto-2.6.1-1.fc20.x86_64
+fc20,fc24: python-iniparse-0.4-9.fc20.noarch
+fc20,fc24: python-IPy-0.75-6.fc20.noarch
+fc20,fc24: python-jinja2-2.7.1-1.fc20.noarch
+fc20,fc24: python-kitchen-1.1.1-5.fc20.noarch
+fc20,fc24: python-libs-2.7.5-9.fc20.x86_64
+fc20,fc24: python-markdown-2.3.1-3.fc20.noarch
+fc20,fc24: python-markupsafe-0.18-1.fc20.x86_64
+fc20,fc24: python-msgpack-0.1.13-4.fc20.x86_64
+fc20,fc24: python-pillow-2.2.1-2.fc20.x86_64
+fc20,fc24: python-prettytable-0.6.1-3.fc20.noarch
+fc20,fc24: python-psutil-1.0.1-1.fc20.x86_64
+fc20,fc24: python-pycurl-7.19.0-17.20120408git9b8f4e38.fc20.x86_64
+fc20,fc24: python-pygments-1.4-9.fc20.noarch
+fc20,fc24: python-requests-1.2.3-5.fc20.noarch
+fc20,fc24: python-six-1.4.1-1.fc20.noarch
+fc20,fc24: python-urlgrabber-3.9.1-32.fc20.noarch
+fc20,fc24: python-urllib3-1.7-4.fc20.noarch
+fc20,fc24: python-zmq-13.0.2-1.fc20.x86_64
+fc20,fc24: pyxattr-0.5.1-4.fc20.x86_64
+fc20,fc24: PyYAML-3.10-9.fc20.x86_64
+fc20,fc24: qemu-img-1.6.1-3.fc20.x86_64
+fc20,fc24: qrencode-libs-3.4.2-1.fc20.x86_64
+fc20,fc24: quota-4.01-10.fc20.x86_64
+fc20,fc24: quota-nls-4.01-10.fc20.noarch
+fc20,fc24: radvd-1.9.2-4.fc20.x86_64
+fc20,fc24: readline-6.2-8.fc20.x86_64
+fc20,fc24: redhat-rpm-config-9.1.0-54.fc20.noarch
+fc20,fc24: rootfiles-8.1-16.fc20.noarch
+fc20,fc24: rpcbind-0.2.1-0.2.fc20.x86_64
+fc20,fc24: rpm-4.11.3-1.fc20.x86_64
+fc20,fc24: rpm-build-libs-4.11.3-1.fc20.x86_64
+fc20,fc24: rpm-libs-4.11.3-1.fc20.x86_64
+fc20,fc24: rpm-python-4.11.3-1.fc20.x86_64
+fc20,fc24: rsync-3.1.0-1pre1.fc20.x86_64
+fc20,fc24: rsyslog-7.4.2-2.fc20.x86_64
+fc20,fc24: salt-master-2015.5.0-1.fc20.noarch
 ub16: salt-master
-fc20: salt-2015.5.0-1.fc20.noarch
-fc20: salt-minion-2015.5.0-1.fc20.noarch
+fc20,fc24: salt-2015.5.0-1.fc20.noarch
+fc20,fc24: salt-minion-2015.5.0-1.fc20.noarch
 ub16: salt-minion
-fc20: screen
-fc20: sed-4.2.2-5.fc20.x86_64
-fc20: selinux-policy-3.12.1-106.fc20.noarch
-fc20: selinux-policy-targeted-3.12.1-106.fc20.noarch
-fc20: setools-libs-3.3.7-41.fc20.x86_64
-fc20: setup-2.8.71-2.fc20.noarch
-fc20: shadow-utils-4.1.5.1-8.fc20.x86_64
-fc20: shared-mime-info-1.2-1.fc20.x86_64
-fc20: sheepdog-0.3.0-5.fc20.x86_64
-fc20: snappy-1.1.0-2.fc20.x86_64
-fc20: socat-1.7.2.2-3.fc20.x86_64
-fc20: sqlite-3.8.1-2.fc20.x86_64
-fc20: sshpass-1.05-5.fc20.x86_64
-fc20: sudo-1.8.8-1.fc20.x86_64
-fc20: syslinux-4.05-7.fc20.x86_64
-fc20: syslinux-extlinux-4.05-7.fc20.x86_64
+fc20,fc24: screen
+fc20,fc24: sed-4.2.2-5.fc20.x86_64
+fc20,fc24: selinux-policy-3.12.1-106.fc20.noarch
+fc20,fc24: selinux-policy-targeted-3.12.1-106.fc20.noarch
+fc20,fc24: setools-libs-3.3.7-41.fc20.x86_64
+fc20,fc24: setup-2.8.71-2.fc20.noarch
+fc20,fc24: shadow-utils-4.1.5.1-8.fc20.x86_64
+fc20,fc24: shared-mime-info-1.2-1.fc20.x86_64
+fc20,fc24: sheepdog-0.3.0-5.fc20.x86_64
+fc20,fc24: snappy-1.1.0-2.fc20.x86_64
+fc20,fc24: socat-1.7.2.2-3.fc20.x86_64
+fc20,fc24: sqlite-3.8.1-2.fc20.x86_64
+fc20,fc24: sshpass-1.05-5.fc20.x86_64
+fc20,fc24: sudo-1.8.8-1.fc20.x86_64
+fc20,fc24: syslinux-4.05-7.fc20.x86_64
+fc20,fc24: syslinux-extlinux-4.05-7.fc20.x86_64
 fc20: sysvinit-tools-2.88-14.dsf.fc20.x86_64
-fc20: tar-1.26-29.fc20.x86_64
-fc20: tcl-8.5.14-1.fc20.x86_64
-fc20: tcp_wrappers-7.6-76.fc20.x86_64
-fc20: tcp_wrappers-libs-7.6-76.fc20.x86_64
-fc20: tmux
-fc20: trousers-0.3.11.2-1.fc20.x86_64
-fc20: tzdata-2013h-1.fc20.noarch
-fc20: uboot-tools-2013.10-3.fc20.x86_64
-fc20: unbound-libs-1.4.21-1.fc20.x86_64
-fc20: ustr-1.0.4-15.fc20.x86_64
-fc20: util-linux-2.24-2.fc20.x86_64
-fc20: v8-3.14.5.10-3.fc20.x86_64
-fc20: v8-devel-3.14.5.10-3.fc20.x86_64
-fc20: vim-minimal-7.4.027-2.fc20.x86_64
-fc20: which-2.20-6.fc20.x86_64
-fc20: xen-libs-4.3.1-8.fc20.x86_64
-fc20: xen-licenses-4.3.1-8.fc20.x86_64
-fc20: xz-5.1.2-6alpha.fc20.x86_64
-fc20: xz-libs-5.1.2-6alpha.fc20.x86_64
-fc20: yajl-2.0.4-3.fc20.x86_64
-fc20: yum-3.4.3-106.fc20.noarch
-fc20: yum-metadata-parser-1.1.4-9.fc20.x86_64
-fc20: yum-utils-1.1.31-20.fc20.noarch
-fc20: zeromq3-3.2.4-1.fc20.x86_64
-fc20: zip-3.0-9.fc20.x86_64
-fc20: zlib-1.2.8-3.fc20.x86_64
-fc20: zlib-devel-1.2.8-3.fc20.x86_64
-fc20: zookeeper-java.noarch
-fc20: pcs
+fc20,fc24: tar-1.26-29.fc20.x86_64
+fc20,fc24: tcl-8.5.14-1.fc20.x86_64
+fc20,fc24: tcp_wrappers-7.6-76.fc20.x86_64
+fc20,fc24: tcp_wrappers-libs-7.6-76.fc20.x86_64
+fc20,fc24: tmux
+fc20,fc24: trousers-0.3.11.2-1.fc20.x86_64
+fc20,fc24: tzdata
+fc20,fc24: uboot-tools-2013.10-3.fc20.x86_64
+fc20,fc24: unbound-libs-1.4.21-1.fc20.x86_64
+fc20,fc24: ustr-1.0.4-15.fc20.x86_64
+fc20,fc24: util-linux-2.24-2.fc20.x86_64
+fc20,fc24: v8-3.14.5.10-3.fc20.x86_64
+fc20,fc24: v8-devel-3.14.5.10-3.fc20.x86_64
+fc20,fc24: vim-minimal-7.4.027-2.fc20.x86_64
+fc20,fc24: which-2.20-6.fc20.x86_64
+fc20,fc24: xen-libs-4.3.1-8.fc20.x86_64
+fc20,fc24: xen-licenses-4.3.1-8.fc20.x86_64
+fc20,fc24: xz-5.1.2-6alpha.fc20.x86_64
+fc20,fc24: xz-libs-5.1.2-6alpha.fc20.x86_64
+fc20,fc24: yajl-2.0.4-3.fc20.x86_64
+fc20,fc24: yum-3.4.3-106.fc20.noarch
+fc20,fc24: yum-metadata-parser-1.1.4-9.fc20.x86_64
+fc20,fc24: yum-utils-1.1.31-20.fc20.noarch
+fc20,fc24: zeromq3-3.2.4-1.fc20.x86_64
+fc20,fc24: zip-3.0-9.fc20.x86_64
+fc20,fc24: zlib-1.2.8-3.fc20.x86_64
+fc20,fc24: zlib-devel-1.2.8-3.fc20.x86_64
+fc20,fc24: zookeeper-java.noarch
+fc20,fc24: pcs
+fc24: python3-devel