From faf91d4d00d528fe8c4ea502ff1ea7b18af1f899 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 29 Mar 2022 21:32:48 -0700 Subject: [PATCH] sshfs and mount.nfs are in base image now --- scripts/installer.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index a78f514d9..1353680c1 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -98,18 +98,6 @@ if [[ "${nginx_version}" != *"1.20."* ]]; then rm /tmp/nginx.deb fi -if ! which mount.nfs; then - log "installing nfs-common" - prepare_apt_once - apt install -y nfs-common -fi - -if ! which sshfs; then - log "installing sshfs" - prepare_apt_once - apt install -y sshfs -fi - log "updating node" readonly node_version=16.13.1 if [[ "$(node --version)" != "v${node_version}" ]]; then