sap-linuxlab / community.sap_libs

Automation for SAP - Collection of Ansible Modules for SAP for low-level activities which are highly reusable
Apache License 2.0
16 stars 7 forks source link

sap_control_exec Windows support #47

Open ms-automatics opened 2 weeks ago

ms-automatics commented 2 weeks ago

Summary

Would be great to have Windows support for several modules, e.g. for sap_control_exec in a first step. Either by directly supporting Windows within the existing module if possible or by creating separate Windows modules like sap_control_exec_win for example.

Issue Type

Feature Idea

Component Name

sap_control_exec

Additional Information

# Either just support windows in the existing module
- name: GetProcessList with sysnr
  community.sap_libs.sap_control_exec:
    hostname: 192.168.8.15
    sysnr: "01"
    function: GetProcessList

# Or with a separate Windows module
- name: GetProcessList with sysnr
  community.sap_libs.sap_control_exec_win:
    hostname: 192.168.8.15
    sysnr: "01"
    function: GetProcessList

Code of Conduct