kaytus.ksmanage.edit_log_setting – Set bmc system and audit log setting¶
Note
This plugin is part of the kaytus.ksmanage collection.
To install it use: ansible-galaxy collection install kaytus.ksmanage
.
To use it in a playbook, specify: kaytus.ksmanage.edit_log_setting
.
New in version 1.0.0: of kaytus.ksmanage
Synopsis¶
Set bmc system and audit log setting on kaytus Server.
Only the M5 models support this feature.
Requirements¶
The below requirements are needed on the host that executes this module.
Python 3.7+
inManage
Parameters¶
Examples¶
- name: Edit log setting test
hosts: ksmanage
connection: local
gather_facts: no
vars:
ksmanage:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Edit bmc system log setting"
kaytus.ksmanage.edit_log_setting:
status: "enable"
type: "both"
provider: "{{ ksmanage }}"
- name: "Edit bmc audit log setting"
kaytus.ksmanage.edit_log_setting:
audit_status: "enable"
audit_type: "remote"
server_addr: "100.2.126.11"
server_port: "514"
provider: "{{ ksmanage }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ieisystem)