Update cirros image 59/22559/3
authorMichael Polenchuk <mpolenchuk@mirantis.com>
Thu, 29 Sep 2016 13:48:29 +0000 (16:48 +0300)
committerMichael Polenchuk <mpolenchuk@mirantis.com>
Thu, 20 Oct 2016 13:55:36 +0000 (16:55 +0300)
To properly handle source routing passing by dhcpd
inside instance get latest cirros image.

JIRA: FUEL-202
Change-Id: Icd44ebbdd7b4aa0cb55c080e614616a7b0198c0f
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
build/install/apt-ftparchive-deb.conf
build/install/apt-ftparchive-release.conf
build/install/install.sh
build/patch-packages/Makefile
build/patch-packages/cirros_testvm/Makefile [new file with mode: 0644]
build/patch-packages/tools/deb_pack

index 0d15aec..edcb1f2 100644 (file)
@@ -17,15 +17,13 @@ TreeDefault {
 };
 
 BinDirectory "pool/main" {
-  Packages "dists/trusty/main/binary-amd64/Packages";
-  BinOverride "./indices/override.trusty.main";
-  ExtraOverride "./indices/override.trusty.extra.main";
+  Packages "dists/mos9.0/main/binary-amd64/Packages";
 };
 
 Default {
   Packages {
     Extensions ".deb";
-    Compress ". gzip";
+    Compress ". gzip bzip2";
   };
 };
 
index 02706bd..e40ff68 100644 (file)
@@ -8,11 +8,11 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-APT::FTPArchive::Release::Origin "Ubuntu";
-APT::FTPArchive::Release::Label "Ubuntu";
-APT::FTPArchive::Release::Suite "trusty";
-APT::FTPArchive::Release::Version "1.04";
-APT::FTPArchive::Release::Codename "trusty";
+APT::FTPArchive::Release::Origin "Mirantis";
+APT::FTPArchive::Release::Label "mos9.0";
+APT::FTPArchive::Release::Suite "mos9.0";
+APT::FTPArchive::Release::Version "14.04";
+APT::FTPArchive::Release::Codename "mos9.0";
 APT::FTPArchive::Release::Architectures "amd64";
 APT::FTPArchive::Release::Components "main";
 APT::FTPArchive::Release::Description "Ubuntu Trusty Tahr 14.04 LTS";
index 866d304..d1a49f3 100755 (executable)
@@ -393,8 +393,7 @@ copy_packages() {
         printf "\n\n" | tee -a  $REPORTFILE
         for line in `cat $TOP/patch-packages/release/patch-replacements`
         do
-            echo "Did not expect a line here, not supported"
-                   exit 1
+            echo "Processing $line ..."
             frompkg=`echo $line | cut -d ">" -f 1`
             topkg=`echo $line | cut -d ">" -f 2`
             echo "CM: Applying patch to $frompkg" | tee -a $REPORTFILE
@@ -414,9 +413,11 @@ copy_packages() {
                 exit 1
             else
                 echo "Adding $topkg to repo"
-                cp $TOP/patch-packages/release/packages/$topkg .
+                pkg_dest=$(dirname $frompkg)
+                cp $TOP/patch-packages/release/packages/$topkg $pkg_dest/
             fi
 
+            pushd $pkg_dest > /dev/null
             patchname=`get_deb_name $topkg`
             patchrev=`get_deb_rev $topkg`
             echo "Correcting dependencies towards $patchname rev $patchrev - old rev $oldrev" | tee -a $REPORTFILE
@@ -424,6 +425,7 @@ copy_packages() {
             if [ $PIPESTATUS -ne 0 ]; then
                 exit 1
             fi
+            popd > /dev/null
         done
         popd > /dev/null
     fi
@@ -436,9 +438,7 @@ copy_packages() {
     APT_DEB_CONF="$TOP/install/apt-ftparchive-deb.conf"
     APT_UDEB_CONF="$TOP/install/apt-ftparchive-udeb.conf"
 
-    echo Not running echo apt-ftparchive -c "${APT_REL_CONF}" generate "${APT_DEB_CONF}"
-    echo Not running apt-ftparchive -c "${APT_REL_CONF}" generate "${APT_DEB_CONF}"
-    echo Not running apt-ftparchive generate "${APT_UDEB_CONF}"
+    apt-ftparchive -c "${APT_REL_CONF}" generate "${APT_DEB_CONF}"
     echo Not running apt-ftparchive generate "${APT_UDEB_CONF}"
 
     # Fuel also needs this index file
@@ -447,8 +447,8 @@ copy_packages() {
     # /^Version:/{print pkg ": \"" $2 "\""}' > ubuntu-versions.yaml
     # cp ubuntu-versions.yaml $DEST
 
-    # apt-ftparchive -c "${APT_REL_CONF}" release dists/trusty/ > dists/trusty/Release
-    # gzip -9cf dists/trusty/Release > dists/trusty/Release.gz
+    apt-ftparchive -c "${APT_REL_CONF}" release dists/mos9.0/ > dists/mos9.0/Release
+    gzip -9cf dists/mos9.0/Release > dists/mos9.0/Release.gz
 
     popd > /dev/null
 
index 339c9e7..aaac038 100644 (file)
@@ -8,7 +8,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-SUBDIRS := 
+SUBDIRS := cirros_testvm
 SUBCLEAN = $(addsuffix .clean,$(SUBDIRS))
 
 .PHONY: $(SUBDIRS) $(SUBCLEAN) clean
diff --git a/build/patch-packages/cirros_testvm/Makefile b/build/patch-packages/cirros_testvm/Makefile
new file mode 100644 (file)
index 0000000..4cbe13f
--- /dev/null
@@ -0,0 +1,31 @@
+##############################################################################
+# Copyright (c) 2015,2016 Ericsson AB, Mirantis Inc. and others.
+# stefan.k.berg@ericsson.com
+# jonas.bjurel@ericsson.com
+# mpolenchuk@mirantis.com
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+TOP := $(shell pwd)
+
+.PHONY: all
+all:
+
+.PHONY: clean
+clean:
+       @rm -rf package
+       @rm -rf *.deb
+       @rm -rf patch-replacements
+       @rm -rf .package
+
+.PHONY: release
+release:
+       ../tools/deb_unpack c/cirros-testvm/cirros-testvm_0.3.4-2~u14.04+mos5_amd64.deb $(ORIGISO)
+       @rm -rf package/usr/share/cirros-testvm/*
+       wget -O package/usr/share/cirros-testvm/cirros-x86_64-disk.img http://download.cirros-cloud.net/daily/20160722/cirros-d160722-x86_64-disk.img
+       ../tools/deb_pack $(REVSTATE)
+       @cp *.deb ../release/packages
+       @cat patch-replacements >> ../release/patch-replacements
index f5d42de..1550d95 100755 (executable)
@@ -39,7 +39,7 @@ revision_step ()
 {
     REV=$1
 
-    sed -i "s/^\(Version:.*$\)/\1-eri$REV/" package/DEBIAN/control
+    sed -i "s/^\(Version:.*$\)/\1-opnfv$REV/" package/DEBIAN/control
 }
 
 md5sum_gen ()