From afec9bf66139c37b9da599fd089f12fda3c00f65 Mon Sep 17 00:00:00 2001 From: Moul Date: Tue, 24 Oct 2017 21:54:14 +0200 Subject: [PATCH] =?UTF-8?q?[mod]=20prosody:=C2=A0remove=20metronome=20inst?= =?UTF-8?q?all=20for=20RPi.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install_yunohost | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/install_yunohost b/install_yunohost index 47bb6f9..d439b40 100755 --- a/install_yunohost +++ b/install_yunohost @@ -133,21 +133,6 @@ 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 }