mirror of
https://gitlab.com/JKANetwork/JKArch.git
synced 2026-02-19 03:31:32 +01:00
changes
This commit is contained in:
@@ -238,23 +238,23 @@ echo "$(T "Your changes")"
|
|||||||
tput setaf 9
|
tput setaf 9
|
||||||
case $formatoraiz in
|
case $formatoraiz in
|
||||||
"mkfs.ext4 -F")
|
"mkfs.ext4 -F")
|
||||||
mosfraiz="formateado en ext4";;
|
mosfraiz="$(T "ext4 formatted")";;
|
||||||
"mkfs.btrfs -f")
|
"mkfs.btrfs -f")
|
||||||
mosfraiz="formateado en btrfs";;
|
mosfraiz="$(T "btrfs formatted")";;
|
||||||
"echo No formatear ")
|
"echo No formatear ")
|
||||||
mosfraiz="sin formatear";;
|
mosfraiz="$(T "Not formatted")";;
|
||||||
esac
|
esac
|
||||||
echo "$(T "Root partition"): $particionraiz , $mosfraiz"
|
echo "$(T "Root partition"): $particionraiz , $mosfraiz"
|
||||||
if [[ $particionhome ]];then
|
if [[ $particionhome ]];then
|
||||||
case $formatohome in
|
case $formatohome in
|
||||||
"mkfs.ext4 -F")
|
"mkfs.ext4 -F")
|
||||||
mosfhome="formateado en ext4";;
|
mosfhome="$(T "ext4 formatted")";;
|
||||||
"mkfs.btrfs -f")
|
"mkfs.btrfs -f")
|
||||||
mosfhome="formateado en btrfs";;
|
mosfhome="$(T "btrfs formatted");;
|
||||||
"mkfs.xfs -f")
|
"mkfs.xfs -f")
|
||||||
mosfhome="formateado en XFS";;
|
mosfhome="$(T "XFS formatted")";;
|
||||||
"echo No formatear ")
|
"echo No formatear ")
|
||||||
mosfhome="sin formatear";;
|
mosfhome="$(T "Not formatted")";;
|
||||||
esac
|
esac
|
||||||
echo "Partición home (/home): $particionhome , $mosfhome"
|
echo "Partición home (/home): $particionhome , $mosfhome"
|
||||||
fi
|
fi
|
||||||
@@ -265,6 +265,6 @@ tput setaf 1 ; echo "$(T "If you agree with that, press enter. If not, turn off
|
|||||||
pause
|
pause
|
||||||
install
|
install
|
||||||
clear
|
clear
|
||||||
mostrardialog "Fin" "Instalación finalizada, al pulsar aceptar, se reiniciará el sistema"
|
mostrardialog "$(T "End")" "$(T "Setup finished, press enter to reboot.")"
|
||||||
rm -rf /mnt/root/inst
|
rm -rf /mnt/root/inst
|
||||||
reboot
|
reboot
|
||||||
|
|||||||
@@ -40,6 +40,18 @@ case "$1" in
|
|||||||
echo "Si estas de acuerdo, presione enter, en caso contrario, apague el ordenador a la fuerza y no comenzará la instalación";;
|
echo "Si estas de acuerdo, presione enter, en caso contrario, apague el ordenador a la fuerza y no comenzará la instalación";;
|
||||||
"Root partition")
|
"Root partition")
|
||||||
echo "Partición raiz (/)";;
|
echo "Partición raiz (/)";;
|
||||||
|
"ext4 formatted")
|
||||||
|
echo "formateado en ext4";;
|
||||||
|
"btrfs formatted")
|
||||||
|
echo "formateado en btrfs";;
|
||||||
|
"XFS formatted")
|
||||||
|
echo "formateado en XFS";;
|
||||||
|
"Not formatted")
|
||||||
|
echo "sin formatear";;
|
||||||
|
"End")
|
||||||
|
echo "Fin";;
|
||||||
|
"Setup finished, press enter to reboot.")
|
||||||
|
echo "Instalación finalizada, al pulsar aceptar, se reiniciará el sistema";;
|
||||||
*)
|
*)
|
||||||
echo "$1";;
|
echo "$1";;
|
||||||
esac
|
esac
|
||||||
@@ -85,6 +97,18 @@ case "$1" in
|
|||||||
echo "If you agree with that, press enter. If not, turn off the computer";;
|
echo "If you agree with that, press enter. If not, turn off the computer";;
|
||||||
"Root partition")
|
"Root partition")
|
||||||
echo "$1";;
|
echo "$1";;
|
||||||
|
"ext4 formatted")
|
||||||
|
echo "$1";;
|
||||||
|
"btrfs formatted")
|
||||||
|
echo "$1";;
|
||||||
|
"XFS formatted")
|
||||||
|
echo "$1";;
|
||||||
|
"Not formatted")
|
||||||
|
echo "$1";;
|
||||||
|
"End")
|
||||||
|
echo "$1";;
|
||||||
|
"Setup finished, press enter to reboot.")
|
||||||
|
echo "$1";;
|
||||||
*)
|
*)
|
||||||
translate_es "$1";;
|
translate_es "$1";;
|
||||||
esac
|
esac
|
||||||
|
|||||||
Reference in New Issue
Block a user