#!/bin/bash

if [ "$1" == "remove" ]; then
	if [ -d /run/systemd/system ]; then
		systemctl stop firewall
		systemctl disable firewall
	else
		/etc/init.d/firewall stop
	fi
fi
