Skip to content

Commit

Permalink
add split-task to possible vdom configs (#3464)
Browse files Browse the repository at this point in the history
  • Loading branch information
dasTor authored Aug 28, 2024
1 parent eefa4c4 commit de986f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion netmiko/fortinet/fortinet_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ def _vdoms_enabled(self) -> bool:
check_command, expect_string=self.prompt_pattern
)
return bool(
re.search(r"Virtual domain configuration: (multiple|enable)", output)
re.search(
r"Virtual domain configuration: (multiple|enable|split-task)", output
)
)

def _config_global(self) -> str:
Expand Down

0 comments on commit de986f4

Please sign in to comment.