#!/bin/bash # # Copyright (C) 2021 Denis 'GNUtoo' Carikli # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # 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 . is_replicant_6() { match_replicant_version '^6\.0-' } is_replicant_11() { match_replicant_version '^11-' } is_transition_release() { if echo "${RELEASE}" | grep '\-transition$' > /dev/null ; then true else false fi } match_replicant_version() { regex="$1" echo "${RELEASE}" | grep "${regex}" 2>&1 > /dev/null ; ret=$? if [ ${ret} -eq 0 ] ; then true else false fi } set_color() { if [ "$COLOR" = "1" ] ; then color_start="\033[36m" color_end="\033[0m" else color_start="" color_end="" fi }