From b3a6e05b603efb450bd26f704d9571a08b91dc50 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Mon, 14 Feb 2022 14:50:57 -0500 Subject: [PATCH] Update install_services.sh --- scripts/install_services.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/install_services.sh b/scripts/install_services.sh index ac1bc91..f5bbf0d 100755 --- a/scripts/install_services.sh +++ b/scripts/install_services.sh @@ -19,6 +19,12 @@ set_hostname() { fi } +install_lynx() { + if ! which lynx &> /dev/null;then + apt -y install lynx + fi +} + install_ftpd() { if ! [ -f /etc/ftpuseres ];then apt -y install ftpd @@ -580,6 +586,7 @@ install_selected_services() { generate_BirdDB install_cleanup_cron install_ftpd + install_lynx } if [ -f ${config_file} ];then