#!/bin/bash set -e if [ -e /etc/systemd/system/supertuxparty.service ]; then systemctl stop supertuxparty fi # Install Lix mkdir -p /opt/supertuxparty curl 'https://supertux.party/download/latest/server.zip' > ${TMPDIR:/tmp}/server.zip unzip -o -d /opt/supertuxparty ${TMPDIR:/tmp}/server.zip rm ${TMPDIR:/tmp}/server.zip # Create SystemD unit cat > /etc/systemd/system/supertuxparty.service <