mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Copyright (C) 2020-2023 VyOS maintainers and contributors
 | 
						|
#
 | 
						|
# This program is free software; you can redistribute it and/or modify
 | 
						|
# it under the terms of the GNU General Public License version 2 or later as
 | 
						|
# published by the Free Software Foundation.
 | 
						|
#
 | 
						|
# This program is distributed in the hope that it will be useful,
 | 
						|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 | 
						|
# GNU General Public License for more details.
 | 
						|
#
 | 
						|
# You should have received a copy of the GNU General Public License
 | 
						|
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
# Set environment variables
 | 
						|
export DEBIAN_FRONTEND="noninteractive"
 | 
						|
 | 
						|
# Prepare for further tasks
 | 
						|
function prepare_apt() {
 | 
						|
    # Update packages list
 | 
						|
    apt-get update
 | 
						|
 | 
						|
    # Add VyOS repository to the system
 | 
						|
    local APT_VYOS_MIRROR=$(tomlq --raw-output .vyos_mirror /tmp/defaults.toml)
 | 
						|
    local APT_VYOS_BRANCH=$(tomlq --raw-output .vyos_branch /tmp/defaults.toml)
 | 
						|
    local APT_ADDITIONAL_REPOS=$(tomlq --raw-output .additional_repositories[] /tmp/amd64.toml)
 | 
						|
    local RELEASE_TRAIN=$(tomlq --raw-output .release_train /tmp/defaults.toml)
 | 
						|
 | 
						|
    echo "APT_VYOS_MIRROR      : $APT_VYOS_MIRROR"
 | 
						|
    echo "APT_VYOS_BRANCH      : $APT_VYOS_BRANCH"
 | 
						|
    echo "APT_ADDITIONAL_REPOS : $APT_ADDITIONAL_REPOS"
 | 
						|
    echo "RELEASE_TRAIN        : $RELEASE_TRAIN"
 | 
						|
 | 
						|
    echo -e "deb ${APT_VYOS_MIRROR} ${APT_VYOS_BRANCH} main\n${APT_ADDITIONAL_REPOS}" > /etc/apt/sources.list.d/vyos.list
 | 
						|
    cat /etc/apt/sources.list.d/vyos.list
 | 
						|
 | 
						|
    if [ ${RELEASE_TRAIN} == "equuleus" ]; then
 | 
						|
        # Add backports repository
 | 
						|
        echo -e "deb http://deb.debian.org/debian buster-backports main\ndeb http://deb.debian.org/debian buster-backports non-free" >> /etc/apt/sources.list.d/vyos.list
 | 
						|
    fi
 | 
						|
 | 
						|
    # Copy additional repositories and preferences, if persented
 | 
						|
    if grep -sq deb /tmp/*.list.chroot; then
 | 
						|
        cat /tmp/*list.chroot >> /etc/apt/sources.list.d/vyos.list
 | 
						|
    fi
 | 
						|
    if grep -sq Package /tmp/*.pref.chroot; then
 | 
						|
        for pref_file in /tmp/*.pref.chroot; do
 | 
						|
            cat $pref_file >> /etc/apt/preferences.d/10vyos
 | 
						|
            echo -e "\n" >> /etc/apt/preferences.d/10vyos
 | 
						|
        done
 | 
						|
    fi
 | 
						|
 | 
						|
    # Add GPG keys
 | 
						|
    if [[ ! -e /etc/apt/trusted.gpg.d/vyos.gpg ]]; then
 | 
						|
        echo "Adding GPG keys to the system"
 | 
						|
        cat /tmp/*.key.chroot | apt-key --keyring /etc/apt/trusted.gpg.d/vyos.gpg add -
 | 
						|
    fi
 | 
						|
 | 
						|
    # Update packages list
 | 
						|
    apt-get -o Acquire::Check-Valid-Until=false update
 | 
						|
}
 | 
						|
 | 
						|
# Cleanup APT after finish
 | 
						|
function cleanup_apt() {
 | 
						|
    # Clear APT cache
 | 
						|
    apt-get clean
 | 
						|
    rm -rf /var/lib/apt/lists/*
 | 
						|
    rm /etc/apt/sources.list.d/vyos.list
 | 
						|
    if [[ -e /etc/apt/preferences.d/10vyos ]]; then
 | 
						|
        rm /etc/apt/preferences.d/10vyos
 | 
						|
    fi
 | 
						|
}
 | 
						|
 | 
						|
# Filter list elements
 | 
						|
function filter_list() {
 | 
						|
    local list_elements=("${!1}")
 | 
						|
    local filtered_elements=("${!2}")
 | 
						|
    local list_elements_filtered
 | 
						|
 | 
						|
    for list_element in "${list_elements[@]}"; do
 | 
						|
        local filtered=""
 | 
						|
 | 
						|
        for filtered_element in "${filtered_elements[@]}"; do
 | 
						|
            if [[ ${list_element} =~ ${filtered_element} ]]; then
 | 
						|
                filtered=True
 | 
						|
            fi
 | 
						|
        done
 | 
						|
 | 
						|
        if [[ -z "${filtered}" ]]; then
 | 
						|
            list_elements_filtered+=("${list_element}")
 | 
						|
        fi
 | 
						|
    done
 | 
						|
    echo ${list_elements_filtered[@]}
 | 
						|
}
 |