2024-01-20 21:28:01 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -euxo pipefail
|
|
|
|
|
2024-01-20 21:38:21 +00:00
|
|
|
{{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}}
|
2024-02-25 20:17:45 +00:00
|
|
|
|
2024-02-22 15:00:41 +00:00
|
|
|
echo -e "\033[0;32m>>>>> Begin Arch/Manjaro Linux packages installation <<<<<\033[0m"
|
2024-01-20 21:28:01 +00:00
|
|
|
|
|
|
|
## Update system
|
|
|
|
{{- if ne .chezmoi.username "root" }}
|
|
|
|
sudo pacman -Syu --noconfirm
|
|
|
|
{{- else }}
|
|
|
|
pacman -Syu --noconfirm
|
|
|
|
{{- end}}
|
|
|
|
|
|
|
|
## Install yay
|
|
|
|
if [ ! $(command -v yay) ]; then
|
|
|
|
echo "installing yay"
|
2024-02-27 20:40:04 +00:00
|
|
|
|
|
|
|
{{ range .packages_base.archlinux.pacman -}}
|
|
|
|
{{- if ne .chezmoi.username "root" }}
|
|
|
|
sudo pacman -S --needed --noconfirm {{ . | quote }}
|
|
|
|
{{- else}}
|
|
|
|
pacman -S --needed --noconfirm {{ . | quote }}
|
|
|
|
{{- end }}
|
|
|
|
{{ end -}}
|
|
|
|
|
2024-01-20 21:28:01 +00:00
|
|
|
git clone https://aur.archlinux.org/yay.git /tmp/yay
|
|
|
|
cd /tmp/yay
|
|
|
|
makepkg -si --noconfirm
|
|
|
|
rm -rf /tmp/yay
|
|
|
|
fi
|
|
|
|
|
|
|
|
## Install packages
|
2024-02-27 20:40:04 +00:00
|
|
|
{{ range .packages_base.archlinux.yay -}}
|
|
|
|
echo "installing {{ . | quote }}..."
|
|
|
|
yay -S --needed --noconfirm {{ . | quote }}
|
|
|
|
{{ end -}}
|
2024-01-09 19:50:02 +00:00
|
|
|
|
2024-02-22 15:00:41 +00:00
|
|
|
echo -e "\033[0;32m>>>>> Finish Arch/Manjaro Linux packages installation <<<<<\033[0m"
|
2024-02-25 20:17:45 +00:00
|
|
|
|
|
|
|
{{ else if (eq .chezmoi.osRelease.id "debian" "ubuntu") -}}
|
|
|
|
|
|
|
|
echo -e "\033[0;32m>>>>> Begin Debian/Ubuntu Linux packages installation <<<<<\033[0m"
|
|
|
|
|
2024-02-27 15:39:55 +00:00
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
2024-02-27 09:42:25 +00:00
|
|
|
## Add repositories and update system
|
2024-02-26 19:23:16 +00:00
|
|
|
{{- if ne .chezmoi.username "root" }}
|
2024-02-27 15:39:55 +00:00
|
|
|
sudo -E apt-get install --yes --no-install-recommends --ignore-missing lsb-release gpg
|
2024-02-27 10:06:03 +00:00
|
|
|
curl -fsSL 'https://proget.makedeb.org/debian-feeds/makedeb.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/makedeb-archive-keyring.gpg 1> /dev/null
|
2024-02-27 09:42:25 +00:00
|
|
|
echo 'deb [signed-by=/usr/share/keyrings/makedeb-archive-keyring.gpg arch=all] https://proget.makedeb.org/ makedeb main' | sudo tee /etc/apt/sources.list.d/makedeb.list
|
2024-02-27 13:23:36 +00:00
|
|
|
curl -fsSL 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null
|
|
|
|
echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list
|
2024-02-27 15:39:55 +00:00
|
|
|
sudo -E apt update
|
|
|
|
sudo -E apt upgrade --yes
|
|
|
|
sudo -E apt-get install --yes --no-install-recommends --ignore-missing mist
|
2024-02-26 19:23:16 +00:00
|
|
|
{{- else }}
|
2024-02-27 15:39:55 +00:00
|
|
|
apt-get install --yes --no-install-recommends --ignore-missing lsb-release gpg
|
2024-02-27 10:06:03 +00:00
|
|
|
curl -fsSL 'https://proget.makedeb.org/debian-feeds/makedeb.pub' | gpg --dearmor | tee /usr/share/keyrings/makedeb-archive-keyring.gpg 1> /dev/null
|
2024-02-27 09:42:25 +00:00
|
|
|
echo 'deb [signed-by=/usr/share/keyrings/makedeb-archive-keyring.gpg arch=all] https://proget.makedeb.org/ makedeb main' | tee /etc/apt/sources.list.d/makedeb.list
|
2024-02-27 13:23:36 +00:00
|
|
|
curl -fsSL 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null
|
|
|
|
echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" | tee /etc/apt/sources.list.d/prebuilt-mpr.list
|
2024-02-27 15:39:55 +00:00
|
|
|
apt update
|
|
|
|
apt upgrade --yes
|
|
|
|
apt-get install --yes --no-install-recommends --ignore-missing mist
|
2024-02-26 19:23:16 +00:00
|
|
|
{{- end}}
|
|
|
|
|
2024-02-27 14:40:01 +00:00
|
|
|
mist update
|
|
|
|
|
2024-02-26 19:23:16 +00:00
|
|
|
## Install packages
|
2024-02-27 20:40:04 +00:00
|
|
|
{{ range .packages_base.debian.apt -}}
|
|
|
|
echo "installing {{ . | quote }}..."
|
2024-02-26 19:23:16 +00:00
|
|
|
{{- if ne .chezmoi.username "root" }}
|
2024-02-27 20:40:04 +00:00
|
|
|
sudo -E apt-get install --yes --no-install-recommends --ignore-missing {{ . | quote }}
|
|
|
|
{{- else}}
|
|
|
|
apt-get install --yes --no-install-recommends --ignore-missing {{ . | quote }}
|
2024-02-26 19:23:16 +00:00
|
|
|
{{- end }}
|
2024-02-27 20:40:04 +00:00
|
|
|
{{ end -}}
|
2024-02-27 09:39:00 +00:00
|
|
|
|
2024-02-25 20:17:45 +00:00
|
|
|
echo -e "\033[0;32m>>>>> Finish Debian/Ubuntu Linux packages installation <<<<<\033[0m"
|
|
|
|
|
2024-01-20 21:20:36 +00:00
|
|
|
{{- end }}
|
2024-01-20 21:28:01 +00:00
|
|
|
|