From 9297ea6f82a2babf092eb8d33fc0168b620d422f Mon Sep 17 00:00:00 2001 From: ray Date: Mon, 8 Jun 2020 22:32:05 +0100 Subject: [PATCH] install curl --- server-install-base.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-install-base.sh b/server-install-base.sh index 87801fc..bf05a65 100755 --- a/server-install-base.sh +++ b/server-install-base.sh @@ -1,7 +1,7 @@ #!/bin/sh -apt upgrade || exit 10 -apt install -y tmux ufw || exit 15 +apt upgrade -y || exit 10 +apt install -y tmux ufw curl || exit 15 sed -i '/PubkeyAuthentication/c\PubkeyAuthentication yes' /etc/ssh/sshd_config sed -i '/PasswordAuthentication/c\PasswordAuthentication no' /etc/ssh/sshd_config