mirror of
https://gitlab.manjaro.org/applications/manjaro-architect
synced 2024-11-06 03:20:36 +00:00
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
# !/bin/bash
|
|
#
|
|
# Architect Installation Framework (2016-2017)
|
|
#
|
|
# Written by Carl Duff and @mandog for Archlinux
|
|
# Heavily modified and re-written by @Chrysostomus to install Manjaro instead
|
|
# Contributors: @papajoker, @oberon and the Manjaro-Community.
|
|
#
|
|
# This program is free software, provided under the GNU General Public License
|
|
# as published by the Free Software Foundation. So feel free to copy, distribute,
|
|
# or modify it as you wish.
|
|
|
|
[[ -e /run/miso/bootmnt ]] && setfont ter-u16n
|
|
|
|
while [[ ! $(ping -c 2 manjaro.org) ]]; do
|
|
if [[ $(cat /proc/1/comm) == "systemd" ]];then
|
|
if [[ $(systemctl is-active NetworkManager) == "active" ]]; then
|
|
dialog --backtitle ":: Manjaro Architect ::" --yesno "\nPlease connect to the internet:\n" 0 0 && \
|
|
clear && nmtui && continue || \
|
|
clear && exit 0
|
|
else
|
|
dialog --backtitle ":: Manjaro Architect ::" --title " Error: " --msgbox "\nNo network service detected!\nquitting." 0 0 && \
|
|
clear && exit 0
|
|
fi
|
|
else
|
|
dialog --title " Error: " --msgbox "\nAn active internet connection is needed!\n" 0 0 && \
|
|
clear && exit 0
|
|
fi
|
|
done
|
|
|
|
echo "updating the installer ..."
|
|
sleep 1
|
|
sudo pacman -Sy manjaro-architect --noconfirm
|
|
|
|
echo "launching Manjaro Architect ..."
|
|
sudo manjaro-architect "$@"
|