This commit is contained in:
milisbir 2018-08-27 17:54:50 +03:00
parent a175f0f6d7
commit 4e3147b298
1 changed files with 7 additions and 3 deletions

10
bin/mps
View File

@ -1271,10 +1271,15 @@ sistem_guncelle_eski(){
} }
sistem_guncelle_uygula(){ sistem_guncelle_uygula(){
local _gdosya local _gdosya _onay
if [ "$1" ]; then if [ "$1" ]; then
_gdosya="$1" _gdosya="$1"
fi fi
_onay="yok"
if [ "$2" ]; then
_onay="$2"
fi
[ $_onay = "evet" ] && GS_CIKTI="E"
[ ! -f ${_gdosya} ] && exit 1 [ ! -f ${_gdosya} ] && exit 1
for gpkt in `cat ${_gdosya}`;do for gpkt in `cat ${_gdosya}`;do
durum=`kurulu_kontrol "$gpkt"` durum=`kurulu_kontrol "$gpkt"`
@ -1292,7 +1297,6 @@ sistem_guncelle(){
fi fi
if [ "$1" = "dosya" ];then if [ "$1" = "dosya" ];then
_onay=2 _onay=2
[ "$2" = "evet" ] && _onay=1
fi fi
if [ "$1" ] && [ -f "$1" ];then if [ "$1" ] && [ -f "$1" ];then
guncelleme_dosya="$1" guncelleme_dosya="$1"
@ -1364,7 +1368,7 @@ sistem_guncelle(){
esac esac
done done
elif [ ${_onay} -eq 1 ];then elif [ ${_onay} -eq 1 ];then
sistem_guncelle_uygula $guncelleme_dosya sistem_guncelle_uygula $guncelleme_dosya "evet"
else else
echo "güncelleme dosyanız: $guncelleme_dosya" echo "güncelleme dosyanız: $guncelleme_dosya"
exit 1 exit 1