#!/bin/sh
grep 'Debian 10' /etc/os-release || ( echo "This INSTALL.sh is for 'Debian 10'. Press CTRL-C to abort, ENTER to continue"; read a )
apt-get update -y && apt-get install -y wget gnupg2 curl binutils apt-transport-https
wget -nv https://www.sciebo.de/install/linux/Debian_10/Release.key -O - | apt-key add - || exit 1
echo 'deb http//minio.owncloud.services/clients/build-linux/4883/repo//Debian_10/ /' > /etc/apt/sources.list.d/sciebo.list
apt-get update -q
apt-get install -y sciebo-client
