diff options
author | Michal Skalski <mskalski@mirantis.com> | 2015-04-16 13:40:09 +0000 |
---|---|---|
committer | Michal Skalski <mskalski@mirantis.com> | 2015-04-16 20:33:28 +0000 |
commit | 3db8c36ade39c5996632cb7019336cedb1936913 (patch) | |
tree | b5baacf6180370164d2f5090afa68e04d24aa0ac /fuel/build/install/apt-ftparchive-udeb.conf | |
parent | 4b5977c92d16d1f4af9293fc874645e671674c22 (diff) |
Fix debootstrap package
This commit provide scripts to patch debootstrap package.
This should fix problems that can occur during ubuntu 12.04 installation.
More detail can be found here:
* https://bugs.launchpad.net/ubuntu/+source/debootstrap/+bug/1001131
* https://wiki.debian.org/DebianInstaller/Modify/CD#Workaround_bug_in_deboostrap
Change-Id: I881191a37ba22d336c61623ae506f7e75dcc7540
JIRA:
Signed-off-by: Michal Skalski <mskalski@mirantis.com>
Diffstat (limited to 'fuel/build/install/apt-ftparchive-udeb.conf')
-rw-r--r-- | fuel/build/install/apt-ftparchive-udeb.conf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/fuel/build/install/apt-ftparchive-udeb.conf b/fuel/build/install/apt-ftparchive-udeb.conf new file mode 100644 index 0000000..2acbcf0 --- /dev/null +++ b/fuel/build/install/apt-ftparchive-udeb.conf @@ -0,0 +1,33 @@ +############################################################################## +# Copyright (c) 2015 Ericsson AB and others. +# stefan.k.berg@ericsson.com +# jonas.bjurel@ericsson.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 +############################################################################## + +Dir { + ArchiveDir "."; +}; + +TreeDefault { + Directory "pool"; +}; + +BinDirectory "pool/debian-installer" { + Packages "dists/precise/main/debian-installer/binary-amd64/Packages"; + BinOverride "./indices/override.precise.main.debian-installer"; +}; + +Default { + Packages { + Extensions ".udeb"; + Compress ". gzip"; + }; +}; + +Contents { + Compress "gzip"; +}; |