Skip to content

Commit

Permalink
Hadoop: Use build_permission_change_command
Browse files Browse the repository at this point in the history
  • Loading branch information
VakarisZ committed Jun 11, 2024
1 parent e150b83 commit be0f85c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
IWindowsAgentCommandBuilder,
LinuxDownloadMethod,
LinuxDownloadOptions,
LinuxPermissionChangeOptions,
LinuxRunOptions,
TargetHost,
WindowsDownloadMethod,
Expand Down Expand Up @@ -78,11 +79,14 @@ def _build_linux_hadoop_command(
download_url=agent_download_url,
)

chmod_options = LinuxPermissionChangeOptions(file_path=agent_destination_path)

run_options = LinuxRunOptions(
agent_destination_path=agent_destination_path,
dropper_execution_mode=DropperExecutionMode.NONE,
)

agent_command_builder.build_download_command(download_options)
agent_command_builder.build_permission_change_command(chmod_options)
agent_command_builder.build_run_command(run_options)
return agent_command_builder.get_command()

0 comments on commit be0f85c

Please sign in to comment.