1

Configure service

This commit is contained in:
Evan Pratten 2024-04-19 13:00:21 -04:00
parent 671c53a809
commit 568405dc6a
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
[Unit]
Description = Watch port open and close events
After=network.target
[Service]
Type=simple
StandardOutput=syslog+console
ExecStart = python3 %h/.config/ewconfig/scripts/watch-ports
[Install]
WantedBy=multi-user.target

View File

@ -92,7 +92,7 @@ def print_changes(
message = f"{proc_name} has {action} listening on {change['local']} port {change['port']}{proto_clean}"
message = message[0].upper() + message[1:]
if args.output_mode == "print":
print(message)
print(message, flush=True)
else:
logger.info(message)