From 03da97a1961501bcd74b8772d4391c4350643103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Cort=C3=B3n=20Cobas?= <104267232+carloscortonc@users.noreply.github.com> Date: Sun, 5 Oct 2025 14:01:22 +0200 Subject: [PATCH] feat: simplify `init` script as vsftpd is no longer required --- README.md | 1 - src/modules/scripts/init.sh | 9 --------- 2 files changed, 10 deletions(-) diff --git a/README.md b/README.md index 971f01a..c755511 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,6 @@ You will be prompted for some required configuration and preferences: > Server Ip and user will be stored in a configuration file `.rpirc`, which will be read on consecutive executions. The process will: -- Install `vsftdp`, required for deploying. - Install `docker`. - Configure `nginx`, if requested. diff --git a/src/modules/scripts/init.sh b/src/modules/scripts/init.sh index 5f26683..2a5beef 100644 --- a/src/modules/scripts/init.sh +++ b/src/modules/scripts/init.sh @@ -7,15 +7,6 @@ ssh -o ConnectTimeout=5 $USER@$IP 'bash -s' <> /etc/vsftpd.conf" -sudo service vsftpd restart - # --- INSTALL DOCKER --- curl -sSL https://get.docker.com | sh sudo usermod -aG docker $USER