Update direwolf.sh

This commit is contained in:
RaspbianProyect by HP3ICC 2023-07-04 16:19:43 +00:00
parent a6ed5e6516
commit 21f79d8c84
1 changed files with 3 additions and 3 deletions

View File

@ -20,20 +20,20 @@ fi
# requeriments
#########################################################################################################################
apps=("git" "gcc" "g++" "make" "cmake" "libasound2-dev" "libudev-dev" "gpsd" "gpsd-clients" "libgps-dev" "ntp" "avahi-daemon" "libavahi-client-dev")
apps=("git" "gcc" "g++" "make" "cmake" "libasound2-dev" "libudev-dev" "gpsd-clients" "libgps-dev" "ntp" "avahi-daemon" "libavahi-client-dev")
for app in "${apps[@]}"
do
# Verificar apps
if ! dpkg -s "$app" >/dev/null 2>&1; then
# app no instalada
sudo apt-get install -y "$app"
apt-get install -y "$app"
else
# app ya instalada
echo "$app ya instalada"
fi
done
apt-get install gpsd -y
#########################################################################################################################
# GPSD
#########################################################################################################################