5daa989fb8
Add apt-sources element for Ubuntu OS to override the default /etc/apt/sources.list in cloudimg. Set DIB_APT_SOURCES with a proper sources.list file to replace the default one. If you want to use this element in tripleo project, set NODE_DIST or EXTRA_ELEMENTS / UNDERCLOUD_DIB_EXTRA_ARGS / OVERCLOUD_DIB_EXTRA_ARGS to make it take effect at build time and run time. e.g. before running devtest.sh: export DIB_APT_SOURCES=/etc/apt/sources.list export NODE_DIST="ubuntu apt-sources" Change-Id: I9ce0d03b506c2948b96382e4d6e85f0aff906450
16 lines
595 B
Markdown
16 lines
595 B
Markdown
Override the default sources.list
|
|
|
|
For Ubuntu OS, if your network connection is slow for the default sources.list,
|
|
you can define DIB_APT_SOURCES with your favorite sources.list to override it,
|
|
before running devtest.sh.
|
|
|
|
The new sources.list will take effect at build time and run time.
|
|
|
|
If you want to use this element in tripleo project, set NODE_DIST or
|
|
EXTRA_ELEMENTS / UNDERCLOUD_DIB_EXTRA_ARGS / OVERCLOUD_DIB_EXTRA_ARGS
|
|
to make it take effect at build time and run time.
|
|
|
|
e.g. before running devtest.sh:
|
|
export DIB_APT_SOURCES=/etc/apt/sources.list
|
|
export NODE_DIST="ubuntu apt-sources"
|