#!/bin/sh

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

