Change the GENTOO_PORTAGE_CLEANUP variable default

Default the GENTOO_PORTAGE_CLEANUP to True.  By default we should not
ship package info, this bloats the image and is usually outdated by the
time it'd be consumed.

Change-Id: I14c2530d91807cbc6a3806e01c7e4f6f472b190d
This commit is contained in:
Matthew Thode 2018-03-26 23:26:49 -05:00
parent ffc06874ef
commit 6a6d78e63c
No known key found for this signature in database
GPG Key ID: 64A37BEAAE19A4E8
2 changed files with 4 additions and 4 deletions

View File

@ -31,9 +31,9 @@ Notes:
default/linux/amd64/17.0/hardened default/linux/amd64/17.0/hardened
default/linux/amd64/17.0/no-multilib/hardened default/linux/amd64/17.0/no-multilib/hardened
* You can set the GENTOO_PORTAGE_CLEANUP environment variable to true (or * You can set the GENTOO_PORTAGE_CLEANUP environment variable to False to
anything other than False) to clean up portage from the system and get the prevent cleaning up portage repositories (including overlays). This makes
image size smaller. the image bigger.
* Gentoo supports many diferent versions of python, in order to select one * Gentoo supports many diferent versions of python, in order to select one
you may use the `GENTOO_PYTHON_TARGETS` environment variable to select you may use the `GENTOO_PYTHON_TARGETS` environment variable to select

View File

@ -1,7 +1,7 @@
export DIB_RELEASE=gentoo export DIB_RELEASE=gentoo
export DISTRO_NAME=gentoo export DISTRO_NAME=gentoo
export GENTOO_PROFILE=${GENTOO_PROFILE:-'default/linux/amd64/17.0'} export GENTOO_PROFILE=${GENTOO_PROFILE:-'default/linux/amd64/17.0'}
export GENTOO_PORTAGE_CLEANUP=${GENTOO_PORTAGE_CLEANUP:-'False'} export GENTOO_PORTAGE_CLEANUP=${GENTOO_PORTAGE_CLEANUP:-'True'}
export GENTOO_PYTHON_TARGETS=${GENTOO_PYTHON_TARGETS:-'python2_7 python3_5'} export GENTOO_PYTHON_TARGETS=${GENTOO_PYTHON_TARGETS:-'python2_7 python3_5'}
export GENTOO_PYTHON_ACTIVE_VERSION=${GENTOO_PYTHON_ACTIVE_VERSION:-'python3.5'} export GENTOO_PYTHON_ACTIVE_VERSION=${GENTOO_PYTHON_ACTIVE_VERSION:-'python3.5'}
export GENTOO_OVERLAYS=${GENTOO_OVERLAYS:-''} export GENTOO_OVERLAYS=${GENTOO_OVERLAYS:-''}