#!/bin/bash

if [ "$1" == "remove" ]; then
	if [ -d /run/systemd/system ]; then
		systemctl stop statusd.socket
	fi
fi
