#!/bin/sh set -e if [ "$1" = "remove" ]; then systemctl disable opentracker.service >/dev/null 2>&1 || true systemctl daemon-reload || true fi exit 0