From 96f9864405f42ad65d6dc005d30a31fdc96f7377 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 7 Feb 2018 02:01:26 +0100 Subject: [PATCH] Not sure why we needed this specific stuff on raspbian, might not be needed for stretch. --- install_yunohost | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/install_yunohost b/install_yunohost index 8513922..49c55cc 100755 --- a/install_yunohost +++ b/install_yunohost @@ -134,21 +134,25 @@ installscript_dependencies() { $DEPENDENCIES \ || return 1 - if is_raspbian ; then - DEPENDENCIES="ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem" - apt_get_wrapper -o Dpkg::Options::="--force-confold" \ - -y --force-yes install \ - $DEPENDENCIES \ - || return 1 - wget -q https://build.yunohost.org/metronome_3.7.9+33b7572-1_armhf.deb \ - || return 1 - sha256sum -c <<<"d19c6b08afb8674d1257dc3349a60e88218c4c01133c53c1fdcb02e86b415a40 metronome_3.7.9+33b7572-1_armhf.deb" \ - || return 1 - dpkg -i metronome_3.7.9+33b7572-1_armhf.deb >> $YUNOHOST_LOG 2>&1 \ - || return 1 - apt-mark hold metronome >> $YUNOHOST_LOG 2>&1 \ - || return 1 - fi + # + # Temporary comment for stretch... + # To be removed if really not needed + # + #if is_raspbian ; then + # DEPENDENCIES="ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem" + # apt_get_wrapper -o Dpkg::Options::="--force-confold" \ + # -y --force-yes install \ + # $DEPENDENCIES \ + # || return 1 + # wget -q https://build.yunohost.org/metronome_3.7.9+33b7572-1_armhf.deb \ + # || return 1 + # sha256sum -c <<<"d19c6b08afb8674d1257dc3349a60e88218c4c01133c53c1fdcb02e86b415a40 metronome_3.7.9+33b7572-1_armhf.deb" \ + # || return 1 + # dpkg -i metronome_3.7.9+33b7572-1_armhf.deb >> $YUNOHOST_LOG 2>&1 \ + # || return 1 + # apt-mark hold metronome >> $YUNOHOST_LOG 2>&1 \ + # || return 1 + #fi }