|
@@ -1,5 +1,9 @@
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
+# -*- encoding: utf-8; py-indent-offset: 4 -*-
|
|
|
+
|
|
|
+# License: GNU General Public License v2
|
|
|
+
|
|
|
from collections.abc import Iterator, Mapping, Sequence
|
|
|
|
|
|
from pydantic import BaseModel
|
|
@@ -17,7 +21,6 @@ def commands_function(params: Params, host_config: HostConfig) -> Iterator[Speci
|
|
|
params.user,
|
|
|
params.password.unsafe(),
|
|
|
]
|
|
|
-
|
|
|
yield SpecialAgentCommand(command_arguments=command_arguments)
|
|
|
|
|
|
special_agent_edirectory_monitor = SpecialAgentConfig(
|
|
@@ -25,3 +28,4 @@ special_agent_edirectory_monitor = SpecialAgentConfig(
|
|
|
parameter_parser=Params.model_validate,
|
|
|
commands_function=commands_function,
|
|
|
)
|
|
|
+
|