sshfs and mount.nfs are in base image now

This commit is contained in:
Girish Ramakrishnan
2022-03-29 21:32:48 -07:00
parent dbb803ff5e
commit faf91d4d00
-12
View File
@@ -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