[feature] move basic dependencies installation after mirros.sh
This commit is contained in:
parent
376a251183
commit
41104b4e14
39
cli/basic.sh
Executable file
39
cli/basic.sh
Executable file
|
@ -0,0 +1,39 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
DIR=$(dirname "$(readlink -f "$0")")
|
||||
. "$DIR/../env.sh"
|
||||
|
||||
log "Installing basic utilities"
|
||||
case "$PM" in
|
||||
apt)
|
||||
sudo apt install \
|
||||
build-essential \
|
||||
unzip p7zip \
|
||||
openssh-client \
|
||||
curl wget \
|
||||
man sudo
|
||||
if [ -f /etc/lsb-release ]; then
|
||||
set -a
|
||||
. /etc/lsb-release
|
||||
set +a
|
||||
export DISTRIB_RELEASE_MAJOR=${DISTRIB_RELEASE%.*}
|
||||
export DISTRIB_RELEASE_MINOR=${DISTRIB_RELEASE#.*}
|
||||
fi
|
||||
;;
|
||||
pacman)
|
||||
sudo pacman -S --noconfirm --needed \
|
||||
base-devel \
|
||||
unzip p7zip \
|
||||
openssh \
|
||||
curl wget \
|
||||
man sudo
|
||||
# install yay
|
||||
if ! command -v yay >/dev/null; then
|
||||
intorepo https://aur.archlinux.org/yay.git /tmp/yay
|
||||
makepkg -si
|
||||
exitrepo
|
||||
fi
|
||||
;;
|
||||
esac
|
|
@ -6,6 +6,7 @@ DIR=$(dirname "$(readlink -f "$0")")
|
|||
|
||||
timedatectl set-ntp on
|
||||
. "$DIR/mirrors.sh"
|
||||
. "$DIR/basic.sh"
|
||||
. "$DIR/fish.sh"
|
||||
. "$DIR/vim.sh"
|
||||
. "$DIR/ranger.sh"
|
||||
|
|
33
env.sh
33
env.sh
|
@ -91,39 +91,6 @@ if [ "$PM" = "n/a" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
log "Installing basic utilities"
|
||||
case "$PM" in
|
||||
apt)
|
||||
sudo apt install \
|
||||
build-essential \
|
||||
unzip p7zip \
|
||||
openssh-client \
|
||||
curl wget \
|
||||
man sudo
|
||||
if [ -f /etc/lsb-release ]; then
|
||||
set -a
|
||||
. /etc/lsb-release
|
||||
set +a
|
||||
export DISTRIB_RELEASE_MAJOR=${DISTRIB_RELEASE%.*}
|
||||
export DISTRIB_RELEASE_MINOR=${DISTRIB_RELEASE#.*}
|
||||
fi
|
||||
;;
|
||||
pacman)
|
||||
sudo pacman -S --noconfirm --needed \
|
||||
base-devel \
|
||||
unzip p7zip \
|
||||
openssh \
|
||||
curl wget \
|
||||
man sudo
|
||||
# install yay
|
||||
if ! command -v yay >/dev/null; then
|
||||
intorepo https://aur.archlinux.org/yay.git /tmp/yay
|
||||
makepkg -si
|
||||
exitrepo
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
log "Environments"
|
||||
echo " PM : $PM"
|
||||
|
|
Loading…
Reference in New Issue
Block a user