Update yunohost-v5-install.sh

adjust dependencies
This commit is contained in:
tteckster 2023-01-06 12:54:41 -05:00 committed by GitHub
parent 2eb375a516
commit 91da813754
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)