mirror of
https://github.com/YunoHost/install_script.git
synced 2024-09-03 20:06:25 +02:00
Move apt-transport-https dependency to general dependency, not just RPi ones
This commit is contained in:
parent
0e8c6962d3
commit
04e838820c
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ upgrade_system() {
|
||||||
|
|
||||||
installscript_dependencies() {
|
installscript_dependencies() {
|
||||||
# dependencies of the install script itself
|
# dependencies of the install script itself
|
||||||
local DEPENDENCIES="lsb-release wget whiptail"
|
local DEPENDENCIES="lsb-release wget whiptail apt-transport-https"
|
||||||
|
|
||||||
if [[ "$AUTOMODE" == "0" ]] ;
|
if [[ "$AUTOMODE" == "0" ]] ;
|
||||||
then
|
then
|
||||||
|
@ -134,7 +134,7 @@ installscript_dependencies() {
|
||||||
|| return 1
|
|| return 1
|
||||||
|
|
||||||
if is_raspbian ; then
|
if is_raspbian ; then
|
||||||
DEPENDENCIES="ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem apt-transport-https"
|
DEPENDENCIES="ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem"
|
||||||
apt_get_wrapper -o Dpkg::Options::="--force-confold" \
|
apt_get_wrapper -o Dpkg::Options::="--force-confold" \
|
||||||
-y --force-yes install \
|
-y --force-yes install \
|
||||||
$DEPENDENCIES \
|
$DEPENDENCIES \
|
||||||
|
|
Loading…
Add table
Reference in a new issue