aboutsummaryrefslogtreecommitdiffstats
path: root/common.sh
blob: 3efd06f52e8804e0439a34a28d8f75ef3850f6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
#
# Copyright (C) 2021 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
#
# 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 <http://www.gnu.org/licenses/>.

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
}