diff options
Diffstat (limited to 'mashrepo')
| -rwxr-xr-x | mashrepo | 23 |
1 files changed, 16 insertions, 7 deletions
@@ -15,6 +15,7 @@ fi [ $debug = 1 ] && echo " find $where -name \*rpm $options" +name= find $where -name \*rpm $options | while read rpm do name=$(rpm -qp --qf "%{NAME}" $rpm) @@ -27,19 +28,25 @@ do elif grep -q "^${name}\$" $mash then ln $rpm $copy && echo "+ $rpm" - elif [[ "^${name}" =~ "^php74-" ]] + elif [[ "^${name}" =~ "^php74" ]] then ln $rpm $copy && echo "+ $rpm" - elif [[ "^${name}" =~ "^php80-" ]] + elif [[ "^${name}" =~ "^php80" ]] then ln $rpm $copy && echo "+ $rpm" - elif [[ "^${name}" =~ "^php81-" ]] + elif [[ "^${name}" =~ "^php81" ]] then ln $rpm $copy && echo "+ $rpm" - elif [[ "^${name}" =~ "^php82-" ]] + elif [[ "^${name}" =~ "^php82" ]] then ln $rpm $copy && echo "+ $rpm" - elif [[ "^${name}" =~ "^php83-" ]] + elif [[ "^${name}" =~ "^php83" ]] + then + ln $rpm $copy && echo "+ $rpm" + elif [[ "^${name}" =~ "^php84" ]] + then + ln $rpm $copy && echo "+ $rpm" + elif [[ "^${name}" =~ "^php85" ]] then ln $rpm $copy && echo "+ $rpm" else @@ -95,14 +102,16 @@ done export debug mashgd -mash54 enterprise/7 x86_64 x86_64 +#mash54 enterprise/7 x86_64 x86_64 #mash54 enterprise/6 i386 i686 #mash54 enterprise/6 x86_64 x86_64 +mashit mashinfo.el10 enterprise/10 x86_64 +mashit mashinfo.el10 enterprise/10 aarch64 mashit mashinfo.el9 enterprise/9 x86_64 mashit mashinfo.el9 enterprise/9 aarch64 mashit mashinfo.el8 enterprise/8 x86_64 mashit mashinfo.el8 enterprise/8 aarch64 -mashit mashinfo.el7 enterprise/7 x86_64 +#mashit mashinfo.el7 enterprise/7 x86_64 #mashit mashinfo.el6 enterprise/6 i386 #mashit mashinfo.el6 enterprise/6 x86_64 echo Done |
