themelektaus
Results
1
comments of
themelektaus
I created a python script called `force_apply.py` ```python3 from easywall.__main__ import CONFIG_PATH from easywall.config import Config from easywall.easywall import Easywall config = Config(CONFIG_PATH) easywall = Easywall(config) easywall.rules.apply_new_rules() easywall.apply_iptables() ``` Then...