optimierungen

This commit is contained in:
simono41 2018-07-16 01:56:11 +02:00
parent 3e2128a62e
commit e9b797e267
2 changed files with 2 additions and 13 deletions

View file

@ -935,10 +935,7 @@ function abfrage() {
for wort in ${extraparameter} for wort in ${extraparameter}
do do
echo "$wort" echo "$wort"
if [ "$wort" == "skipbootpartition" ]; then skipbootpartition=y; fi set ${wort}=y
if [ "$wort" == "noinstall" ]; then noinstall=y; fi
if [ "$wort" == "debug" ]; then debug=y; fi
done done
# Ausgaben # Ausgaben

View file

@ -28,15 +28,7 @@ echo "Hallo Echo"
for wort in "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" for wort in "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
do do
echo "$wort" echo "$wort"
if [ "$wort" == "deletework" ]; then deletework=y; fi set ${wort}=y
if [ "$wort" == "deletecache" ]; then deletecache=y; fi
if [ "$wort" == "makesystem" ]; then makesystem=y; fi
if [ "$wort" == "mkinitcpio" ]; then mkinitcpio=y; fi
if [ "$wort" == "filesystem" ]; then filesystem=y; fi
if [ "$wort" == "initcheck" ]; then initcheck=y; fi
if [ "$wort" == "makeimage" ]; then makeimage=y; fi
if [ "$wort" == "makebios" ]; then makebios=y; fi
if [ "$wort" == "makeiso" ]; then makeiso=y; fi
done done
sleep 5 sleep 5