#!/bin/sh

if [ "$1" = "remove" ]; then
    echo "Stopping and disabling systemd service 'zcoind.service'"
    systemctl stop zcoind.service
    systemctl disable zcoind.service
    echo "Stopping and disabling systemd service 'firod.service'"
    systemctl stop firod.service
    systemctl disable firod.service
fi

