Skip to content

Commit

Permalink
Update mount requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
aarontp committed Oct 8, 2023
1 parent ece98b8 commit 49a32e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion turbinia/workers/analysis/linux_acct.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@
class LinuxAccountAnalysisTask(TurbiniaTask):
"""Task to analyze a Linux password file."""

# Does not need to be MOUNTED as this Task uses extract_artifacts()
REQUIRED_STATES = [
state.ATTACHED, state.MOUNTED, state.CONTAINER_MOUNTED, state.DECOMPRESSED
state.ATTACHED, state.CONTAINER_MOUNTED, state.DECOMPRESSED
]

TASK_CONFIG = {
Expand Down
3 changes: 2 additions & 1 deletion turbinia/workers/analysis/ssh_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ def calculate_session_id(self) -> None:
class LinuxSSHAnalysisTask(TurbiniaTask):
"""Task to analyze Linux SSH authentication."""

REQUIRED_STATES = [state.ATTACHED, state.MOUNTED, state.CONTAINER_MOUNTED]
# Does not need to be MOUNTED as this Task uses extract_artifacts()
REQUIRED_STATES = [state.ATTACHED, state.CONTAINER_MOUNTED]

# Log year validation
# The minimum supported log year
Expand Down
1 change: 1 addition & 0 deletions turbinia/workers/analysis/windows_acct.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
class WindowsAccountAnalysisTask(TurbiniaTask):
"""Task to analyze Windows accounts."""

# Does not need to be MOUNTED as this Task uses extract_artifacts()
REQUIRED_STATES = [
state.ATTACHED, state.CONTAINER_MOUNTED, state.DECOMPRESSED
]
Expand Down

0 comments on commit 49a32e7

Please sign in to comment.