From b4ec733dcc5ddeeaabb4f793fa876403c64ab42e Mon Sep 17 00:00:00 2001 From: Anton Reutov Date: Fri, 13 Aug 2021 21:47:09 +0300 Subject: [PATCH] Installing gnupg --- install/vst-install-ubuntu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/vst-install-ubuntu.sh b/install/vst-install-ubuntu.sh index 07fb749b5..0da5fd907 100755 --- a/install/vst-install-ubuntu.sh +++ b/install/vst-install-ubuntu.sh @@ -258,6 +258,9 @@ if [ ! -e '/usr/bin/wget' ]; then check_result $? "Can't install wget" fi +# Installing gnupg +apt-get -y install gnupg2 + # Checking repository availability wget -q "c.vestacp.com/deb_signing.key" -O /dev/null check_result $? "No access to Vesta repository"