inspur.ispim.edit_uid 模块 – 设置 UID

注意

此模块是 inspur.ispim 集合(版本 2.2.3)的一部分。

如果您使用的是 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install inspur.ispim。您需要进一步的要求才能使用此模块,请参阅 要求 获取详细信息。

要在 playbook 中使用它,请指定:inspur.ispim.edit_uid

inspur.ispim 1.0.0 中的新增功能

概要

  • 在浪潮服务器上设置 UID。

要求

执行此模块的主机需要以下要求。

  • Python 3.7+

  • inspursmsdk

参数

参数

注释

host

string

指定 DNS 主机名或地址,用于通过指定的传输方式连接到远程设备。host 的值用作传输的目标地址。

led

string / 必填

打开或关闭 LED。

选项

  • "on"

  • "off"

password

string

指定用于验证与远程设备连接的密码。如果未在任务中指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

provider

dictionary

包含连接详细信息的 dict 对象。

host

string

指定 DNS 主机名或地址,用于通过指定的传输方式连接到远程设备。host 的值用作传输的目标地址。

password

string

指定用于验证与远程设备连接的密码。如果未在任务中指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

username

string

配置用于验证与远程设备连接的用户名。如果未在任务中指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

time

integer

设置 LED 闪烁时间(秒)。

username

string

配置用于验证与远程设备连接的用户名。如果未在任务中指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

注释

注意

  • 不支持 check_mode

示例

- name: UID test
  hosts: ism
  connection: local
  gather_facts: no
  vars:
    ism:
      host: "{{ ansible_ssh_host }}"
      username: "{{ username }}"
      password: "{{ password }}"

  tasks:

  - name: "Set uid"
    inspur.ispim.edit_uid:
      led: "on"
      time: 10
      provider: "{{ ism }}"

  - name: "Set uid"
    inspur.ispim.edit_uid:
      led: "off"
      provider: "{{ ism }}"

返回值

常见的返回值已在此处记录 此处,以下是此模块特有的字段

描述

changed

boolean

检查设备上是否进行了更改。

已返回: 始终

message

string

模块执行后返回的消息。

已返回: 始终

state

string

模块执行后的状态。

已返回: 始终

作者

  • WangBaoshan (@ispim)