Finalize custom package list support
This commit is contained in:
parent
df6c2bde7c
commit
9f0465c6c7
4 changed files with 9 additions and 1 deletions
|
@ -32,6 +32,11 @@ Then follow the on-screen instructions to completion.
|
||||||
|
|
||||||
If you require extra help, visit the provided video playlist and follow my example.
|
If you require extra help, visit the provided video playlist and follow my example.
|
||||||
|
|
||||||
|
## More custom install
|
||||||
|
|
||||||
|
sh archfi -cpl {URL of your custom package list}
|
||||||
|
|
||||||
|
You can find a sample custom package list file in the samples folder.
|
||||||
|
|
||||||
## For developers
|
## For developers
|
||||||
|
|
||||||
|
|
3
archfi
3
archfi
|
@ -867,7 +867,7 @@ installbase(){
|
||||||
while read pkg; do
|
while read pkg; do
|
||||||
options+=("${pkg}" "" on)
|
options+=("${pkg}" "" on)
|
||||||
done < /tmp/archfi-custom-package-list
|
done < /tmp/archfi-custom-package-list
|
||||||
sel=$(whiptail --backtitle "${apptitle}" --title "Custom Package List" --checklist "" 0 0 0 \
|
sel=$(whiptail --backtitle "${apptitle}" --title "${txtinstallarchlinuxcustompackagelist}" --checklist "" 0 0 0 \
|
||||||
"${options[@]}" \
|
"${options[@]}" \
|
||||||
3>&1 1>&2 2>&3)
|
3>&1 1>&2 2>&3)
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
|
@ -1887,6 +1887,7 @@ loadstrings(){
|
||||||
txtinstallarchlinuxkernel="Kernel"
|
txtinstallarchlinuxkernel="Kernel"
|
||||||
txtinstallarchlinuxfirmwares="Firmwares"
|
txtinstallarchlinuxfirmwares="Firmwares"
|
||||||
txtinstallarchlinuxfilesystems="File Systems"
|
txtinstallarchlinuxfilesystems="File Systems"
|
||||||
|
txtinstallarchlinuxcustompackagelist="Custom Package List"
|
||||||
txtconfigarchlinux="Config Arch Linux"
|
txtconfigarchlinux="Config Arch Linux"
|
||||||
|
|
||||||
txtsethostname="Set Computer Name"
|
txtsethostname="Set Computer Name"
|
||||||
|
|
|
@ -65,6 +65,7 @@ txtinstallarchlinux="Install Arch Linux"
|
||||||
txtinstallarchlinuxkernel="Kernel"
|
txtinstallarchlinuxkernel="Kernel"
|
||||||
txtinstallarchlinuxfirmwares="Firmwares"
|
txtinstallarchlinuxfirmwares="Firmwares"
|
||||||
txtinstallarchlinuxfilesystems="File Systems"
|
txtinstallarchlinuxfilesystems="File Systems"
|
||||||
|
txtinstallarchlinuxcustompackagelist="Custom Package List"
|
||||||
txtconfigarchlinux="Config Arch Linux"
|
txtconfigarchlinux="Config Arch Linux"
|
||||||
|
|
||||||
txtsethostname="Set Computer Name"
|
txtsethostname="Set Computer Name"
|
||||||
|
|
|
@ -65,6 +65,7 @@ txtinstallarchlinux="Installer Arch Linux"
|
||||||
txtinstallarchlinuxkernel="Noyau"
|
txtinstallarchlinuxkernel="Noyau"
|
||||||
txtinstallarchlinuxfirmwares="Firmwares"
|
txtinstallarchlinuxfirmwares="Firmwares"
|
||||||
txtinstallarchlinuxfilesystems="Systèmes de fichier"
|
txtinstallarchlinuxfilesystems="Systèmes de fichier"
|
||||||
|
txtinstallarchlinuxcustompackagelist="Liste de paquet personnel"
|
||||||
txtconfigarchlinux="Configurer Arch Linux"
|
txtconfigarchlinux="Configurer Arch Linux"
|
||||||
|
|
||||||
txtsethostname="Définir le nom de l'ordinateur"
|
txtsethostname="Définir le nom de l'ordinateur"
|
||||||
|
|
Loading…
Reference in a new issue