From 3ebec349b0100333c93fda9cbb6afe04e1b006a8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 5 Nov 2021 16:59:24 +0100 Subject: EL-9 helpers --- getmock | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'getmock') diff --git a/getmock b/getmock index 5292e0a..33539b2 100755 --- a/getmock +++ b/getmock @@ -85,6 +85,16 @@ el8x80) fi type=enterprise ;; +el9x80) + dep=9 + if [ "$2" == "php80" -o "$2" == "test80" ] + then rep=$rep + elif [ "$2" == "remi" ] + then rep=php80 + else rep=${2}80 + fi + type=enterprise + ;; el8x81) dep=8 if [ "$2" == "php81" -o "$2" == "test81" ] @@ -95,6 +105,16 @@ el8x81) fi type=enterprise ;; +el9x81) + dep=9 + if [ "$2" == "php81" -o "$2" == "test81" ] + then rep=$rep + elif [ "$2" == "remi" ] + then rep=php81 + else rep=${2}81 + fi + type=enterprise + ;; el*) dep=${dep#el} type=enterprise ;; @@ -325,6 +345,7 @@ elif [ $1 = all80 ]; then getOneMock fc34x $opt '*8.0*' getOneMock el7x $opt '*8.0*' getOneMock el8x80 $opt '*8.0*' + getOneMock el9x80 $opt '*8.0*' elif [ $1 = all81 ]; then [ $opt = remi ] && opt=php81 @@ -334,6 +355,7 @@ elif [ $1 = all81 ]; then getOneMock fc35x $opt '*8.1*' getOneMock el7x $opt '*8.1*' getOneMock el8x81 $opt '*8.1*' + getOneMock el9x81 $opt '*8.1*' elif [ $1 = all54 ]; then n=7 @@ -356,7 +378,7 @@ elif [ $1 = allx ]; then do getOneMock fc${i}x $opt done - for i in 7 8 + for i in 7 8 9 do getOneMock el${i}x $opt done -- cgit