diff options
Diffstat (limited to 'mashrepo')
-rwxr-xr-x | mashrepo | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -36,6 +36,21 @@ do done } +function mash54() { + echo "Mashing php54 $2 $3" + for rpm in $1/remi/$2/php-*5.4*rpm; do + copy=${rpm/remi/php54} + if [ -f $copy ] + then + if [ $debug = 1 ] + then echo " $rpm (ok)" + fi + else + ln $rpm $copy && echo "+ $rpm" + fi + done +} + debug=0 for opt in $* do @@ -49,6 +64,10 @@ do done export debug + +mash54 enterprise/7 x86_64 +mash54 enterprise/6 i386 +mash54 enterprise/6 x86_64 mashit mashinfo.el7 enterprise/7 x86_64 mashit mashinfo.el6 enterprise/6 i386 mashit mashinfo.el6 enterprise/6 x86_64 |