Switch to git portage tree after installing git.

This commit is contained in:
oddlama 2021-06-02 17:35:48 +02:00
parent 93bc667f91
commit 7c3a0ea148
No known key found for this signature in database
GPG Key ID: 14EFE510775FE39A
1 changed files with 14 additions and 11 deletions

View File

@ -284,6 +284,18 @@ function main_install_gentoo_in_chroot() {
# Sync portage
einfo "Syncing portage tree"
try emerge-webrsync
# Configure basic system things like timezone, locale, ...
configure_base_system
# Prepare portage environment
configure_portage
# Install git (for git portage overlays)
einfo "Installing git"
try emerge --verbose dev-vcs/git
if [[ "$PORTAGE_SYNC_TYPE" == "git" ]]; then
mkdir_or_die 0755 "/etc/portage/repos.conf"
cat > /etc/portage/repos.conf/gentoo.conf <<EOF
@ -301,21 +313,12 @@ sync-openpgp-key-path = /usr/share/openpgp-keys/gentoo-release.asc
EOF
chmod 644 /etc/portage/repos.conf/gentoo.conf \
|| die "Could not change permissions of '/etc/portage/repos.conf/gentoo.conf'"
rm -rf /var/db/repos/gentoo \
|| die "Could not delete obsolete rsync gentoo repository"
try emerge --sync
else
try emerge-webrsync
fi
# Configure basic system things like timezone, locale, ...
configure_base_system
# Prepare portage environment
configure_portage
# Install git (for git portage overlays)
einfo "Installing git"
try emerge --verbose dev-vcs/git
# Install mdadm if we used raid (needed for uuid resolving)
if [[ $USED_RAID == "true" ]]; then
einfo "Installing mdadm"