Skip to content

Commit

Permalink
Fix bug with incorrect pcap/processed and pcap/upload paths getting c…
Browse files Browse the repository at this point in the history
…reated on statup
  • Loading branch information
mmguero committed Dec 19, 2022
1 parent 6ef110f commit 2f5ca49
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,6 @@ def stop(wipe=False):
BoundPath("netbox-postgres", "/var/lib/postgresql/data", True, None, ["."]),
BoundPath("netbox-redis", "/data", True, None, ["."]),
BoundPath("opensearch", "/usr/share/opensearch/data", True, ["nodes"], None),
BoundPath("pcap-capture", "/pcap", True, None, None),
BoundPath("pcap-monitor", "/pcap", True, ["processed", "upload"], None),
BoundPath("suricata", "/var/log/suricata", True, None, ["."]),
BoundPath("upload", "/var/www/upload/server/php/chroot/files", True, None, None),
Expand Down Expand Up @@ -640,7 +639,7 @@ def start():
BoundPath("netbox-redis", "/data", False, None, None),
BoundPath("opensearch", "/usr/share/opensearch/data", False, ["nodes"], None),
BoundPath("opensearch", "/opt/opensearch/backup", False, None, None),
BoundPath("pcap-capture", "/pcap", False, ["processed", "upload"], None),
BoundPath("pcap-monitor", "/pcap", False, ["processed", "upload"], None),
BoundPath("suricata", "/var/log/suricata", False, ["live"], None),
BoundPath("upload", "/var/www/upload/server/php/chroot/files", False, None, None),
BoundPath("zeek", "/zeek/extract_files", False, None, None),
Expand Down

0 comments on commit 2f5ca49

Please sign in to comment.