From 91da8137545c286751e71ac9bd0c1a6f03a284b4 Mon Sep 17 00:00:00 2001 From: tteckster Date: Fri, 6 Jan 2023 12:54:41 -0500 Subject: [PATCH] Update yunohost-v5-install.sh adjust dependencies --- install/yunohost-v5-install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/install/yunohost-v5-install.sh b/install/yunohost-v5-install.sh index 29262c7f..a1f498f9 100644 --- a/install/yunohost-v5-install.sh +++ b/install/yunohost-v5-install.sh @@ -81,13 +81,17 @@ $STD apt-get -y upgrade msg_ok "Updated Container OS" msg_info "Installing Dependencies" -$STD apt-get install -y curl -$STD apt-get install -y sudo +$STD apt-get install -y \ +curl \ +sudo \ +apt-transport-https \ +lsb-release \ +ca-certificates msg_ok "Installed Dependencies" msg_info "Installing YunoHost (Patience)" $STD bash <(curl -fsSL https://install.yunohost.org) -a -$STD apt-key adv --fetch-keys 'https://packages.sury.org/php/apt.gpg' +wget -s -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg msg_ok "Installed YunoHost" PASS=$(grep -w "root" /etc/shadow | cut -b6)