#!/bin/bash

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