inspur.sm.edit_log_setting – Set bmc system and audit log setting.¶
Note
This plugin is part of the inspur.sm collection (version 1.1.2).
To install it use: ansible-galaxy collection install inspur.sm
.
To use it in a playbook, specify: inspur.sm.edit_log_setting
.
New in version 0.1.0: of inspur.sm
Parameters¶
Examples¶
- name: Edit log setting test
hosts: ism
connection: local
gather_facts: no
vars:
ism:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Edit bmc system log setting"
inspur.sm.edit_log_setting:
status: "enable"
type: "both"
provider: "{{ ism }}"
- name: "Edit bmc audit log setting"
inspur.sm.edit_log_setting:
audit_status: "enable"
audit_type: "remote"
server_addr: "100.2.126.11"
server_port: "514"
provider: "{{ ism }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ISIB-group)