Revert "Version 2.3.2"

This reverts commit d0d36da4a0.
This commit is contained in:
Jeroen Oudshoorn
2023-09-08 20:26:33 +02:00
parent ba0c3120da
commit 71e7e85f90

View File

@ -170,6 +170,7 @@ class Fix_Services(plugins.Plugin):
try: try:
# Run the monstart command to restart wlan0mon # Run the monstart command to restart wlan0mon
cmd_output = subprocess.check_output("monstart", shell=True) cmd_output = subprocess.check_output("monstart", shell=True)
self._status = "up"
logging.info("[Fix_Services monstart]: %s" % repr(cmd_output)) logging.info("[Fix_Services monstart]: %s" % repr(cmd_output))
except Exception as err: except Exception as err:
logging.error("[Fix_Services monstart]: %s" % repr(err)) logging.error("[Fix_Services monstart]: %s" % repr(err))
@ -184,6 +185,7 @@ class Fix_Services(plugins.Plugin):
try: try:
# Run the monstart command to restart wlan0mon # Run the monstart command to restart wlan0mon
cmd_output = subprocess.check_output("monstart", shell=True) cmd_output = subprocess.check_output("monstart", shell=True)
self._status = "up"
logging.info("[Fix_Services monstart]: %s" % repr(cmd_output)) logging.info("[Fix_Services monstart]: %s" % repr(cmd_output))
except Exception as err: except Exception as err:
logging.error("[Fix_Services monstart]: %s" % repr(err)) logging.error("[Fix_Services monstart]: %s" % repr(err))