From 04e9edbd7babdd86d7663a1a031bc28327c423dc Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Tue, 25 Jan 2022 14:55:18 -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 7a1ef36..fa1ac8a 100755 --- a/scripts/install_services.sh +++ b/scripts/install_services.sh @@ -19,6 +19,12 @@ set_hostname() { fi } +install_ftpd() { + if ! [ -f /etc/ftpuseres ];then + apt -y install ftpd + fi +} + update_system() { apt update && apt -y upgrade } @@ -549,6 +555,7 @@ install_selected_services() { create_necessary_dirs generate_BirdDB install_cleanup_cron + install_ftpd } if [ -f ${config_file} ];then