Skip to content

Commit

Permalink
working on idaholab#266, Malcolm ISO should format bigger drives for …
Browse files Browse the repository at this point in the history
…index and artifact storage, NOT DONE YET
  • Loading branch information
mmguero committed Mar 20, 2024
1 parent a035107 commit e7bb0d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -877,10 +877,10 @@ def tweak_malcolm_runtime(self, malcolm_install_path):
diskFormatInfo = {k: v for k, v in diskFormatInfo.iteritems() if os.path.isdir(v)}

if MALCOLM_DB_DIR in diskFormatInfo:
for subDir in ['opensearch', 'opensearch-backup']: do
for subDir in ['opensearch', 'opensearch-backup']:
pathlib.Path(os.path.join(diskFormatInfo[MALCOLM_DB_DIR], subDir)).mkdir(parents=False, exist_ok=True)
if MALCOLM_LOGS_DIR in diskFormatInfo:
for subDir in ['zeek-logs', 'suricata-logs']: do
for subDir in ['zeek-logs', 'suricata-logs']:
pathlib.Path(os.path.join(diskFormatInfo[MALCOLM_LOGS_DIR], subDir)).mkdir(parents=False, exist_ok=True)

if args.indexDir:
Expand Down

0 comments on commit e7bb0d1

Please sign in to comment.