mirror of
https://github.com/YunoHost-Apps/pihole_ynh.git
synced 2024-09-03 20:05:58 +02:00
15 lines
383 B
Bash
15 lines
383 B
Bash
#!/bin/bash
|
|
|
|
# Dependencies
|
|
app_depencencies="sqlite3 idn2 php7.3-sqlite3 nettle-dev libcap2-bin build-essential libgmp-dev m4 cmake libidn11-dev libreadline-dev xxd"
|
|
|
|
if [ "$YNH_APP_ARG_PIHOLE_VERSION" == "Last 3.X" ]
|
|
then
|
|
pihole_core_version=3.3.1
|
|
dashboard_version=3.3
|
|
FTL_version=3.0
|
|
else
|
|
pihole_core_version=5.6
|
|
dashboard_version=5.8
|
|
FTL_version=5.11
|
|
fi
|