From fdf2317de7880255f62e1bb3638b76b436db8a79 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Mon, 14 Feb 2022 14:51:57 -0500 Subject: [PATCH] Update update_services.sh --- scripts/update_services.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/update_services.sh b/scripts/update_services.sh index 69c2de3..41fd940 100755 --- a/scripts/update_services.sh +++ b/scripts/update_services.sh @@ -17,6 +17,12 @@ install_ftpd() { fi } +install_lynx() { + if ! which lynx &> /dev/null;then + apt -y install lynx + fi +} + install_scripts() { echo "Installing BirdNET-Pi scripts to /usr/local/bin" ln -sf ${my_dir}/* /usr/local/bin/ @@ -573,6 +579,7 @@ install_selected_services() { generate_BirdDB install_cleanup_cron install_ftpd + install_lynx } if [ -f ${config_file} ];then