2 # This script will attempt to setup the Linux dependencies for compiling QMK/TMK
4 # This could probably go much lower, but since we are including an Arch vagrant,
5 # making it the first match makes sense
7 if [[ -n "$(type -P pacman )" ]]; then
8 # Arch linux and derivatives like Apricity
10 # Allow user to speed up package installs using powerpill/wget tweaks
11 # Always run the pacman mirror update script if possible when vagrant comes up
12 # This will ensure that users never get stalled on a horribly slow mirror
13 pacman -Syyu --needed --noconfirm
14 pacman -S --needed --noconfirm \
21 elif [[ -n "$(type -P apt-get)" ]]; then
22 # Debian and derivatives
23 # This block performs completely non-interactive updates {{
24 export DEBIAN_FRONTEND=noninteractive
25 export DEBCONF_NONINTERACTIVE_SEEN=true
26 echo "grub-pc hold" | dpkg --set-selections
28 apt-get -y --allow-unauthenticated upgrade \
29 -o Dpkg::Options::="--force-confdef" \
30 -o Dpkg::Options::="--force-confold"
43 elif [[ -n "$(type -P yum)" ]]; then
44 # Fedora, CentOS or RHEL and derivatives
45 yum -y makecache && yum -y update
60 elif [[ -n "$(type -P zypper)" ]]; then
62 zypper --non-interactive refresh && zypper --non-interactive update
63 zypper --non-interactive install \