diff options
author | Michal Skalski <mskalski@mirantis.com> | 2016-01-28 15:28:07 +0100 |
---|---|---|
committer | Stefan Berg <sfb@consultron.com> | 2016-01-29 14:41:57 +0100 |
commit | 65c164021cb356b3d4e6888488fb62c3395da4f5 (patch) | |
tree | 8225bb2225c48f450b66eebd1682cd122b5c2cb4 /build/f_isoroot/f_bootstrap/post-scripts | |
parent | 5aa0078848414d6492118f9c6d533c5de3d70bf6 (diff) |
Create local mirrors for offline installation
- switch to fuel-mirror [1]
- plugin developers can create packages.yaml
file with names of required packages
- use custom configuration for fuel-bootstrap
which always point to local repositories
- delay process of bootstrap image creation until
mirrors will be ready
[1] https://github.com/openstack/fuel-mirror
Change-Id: Ie4a47c8cc13d9ded8c6b5fe48cdcbfeb1f6277a4
Signed-off-by: Michal Skalski <mskalski@mirantis.com>
(cherry picked from commit f595c31b29147efb1410756b491ff7bf48d256ec)
Diffstat (limited to 'build/f_isoroot/f_bootstrap/post-scripts')
-rwxr-xr-x | build/f_isoroot/f_bootstrap/post-scripts/03_install_repo.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/f_isoroot/f_bootstrap/post-scripts/03_install_repo.sh b/build/f_isoroot/f_bootstrap/post-scripts/03_install_repo.sh index 427a55add..8dad89397 100755 --- a/build/f_isoroot/f_bootstrap/post-scripts/03_install_repo.sh +++ b/build/f_isoroot/f_bootstrap/post-scripts/03_install_repo.sh @@ -16,4 +16,9 @@ if [ $? -ne 0 ]; then echo "Error removing /opt/opnfv/nailgun directory!" exit 1 fi +mv /opt/opnfv/fuel_bootstrap_cli.yaml /etc/fuel-bootstrap-cli/fuel_bootstrap_cli.yaml +if [ $? -ne 0 ]; then + echo "Error moving bootstrap image configuration!" + exit 1 +fi echo "Done installing pre-build repo" |