theforeman.foreman.scap_content 模块 – 管理 SCAP 内容

注意

此模块是 theforeman.foreman 集合(版本 4.2.0)的一部分。

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

要安装它,请使用:ansible-galaxy collection install theforeman.foreman。您需要进一步的要求才能使用此模块,请参阅 要求 以了解详细信息。

要在 Playbook 中使用它,请指定:theforeman.foreman.scap_content

theforeman.foreman 1.0.0 中的新增功能

概要

  • 创建、更新和删除 SCAP 内容

别名: foreman_scap_content

要求

以下要求需要在执行此模块的主机上满足。

  • requests

参数

参数

注释

locations

列表 / 元素=字符串

实体应分配到的位置列表

organizations

列表 / 元素=字符串

实体应分配到的组织列表

original_filename

字符串

XML 文件的原始文件名。

如果未设置,将使用 *scap_file* 的文件名。

password

字符串 / 必需

访问 Foreman 服务器的用户的密码。

如果未在任务中指定该值,则将使用环境变量 FOREMAN_PASSWORD 的值。

scap_file

路径

包含 XML DataStream 内容的文件。

创建新的 DataStream 时必需。

server_url

字符串 / 必需

Foreman 服务器的 URL。

如果未在任务中指定该值,则将使用环境变量 FOREMAN_SERVER_URL 的值。

state

字符串

实体的状态

选项

  • "present" ←(默认)

  • "absent"

title

字符串 / 必需

SCAP 内容的标题。

updated_title

字符串

新的 SCAP 内容标题。

设置此参数后,模块将不是幂等的。

username

字符串 / 必需

访问 Foreman 服务器的用户名。

如果未在任务中指定该值,则将使用环境变量 FOREMAN_USERNAME 的值。

validate_certs

布尔值

是否验证 Foreman 服务器的 TLS 证书。

如果未在任务中指定该值,则将使用环境变量 FOREMAN_VALIDATE_CERTS 的值。

选项

  • false

  • true ←(默认)

属性

属性

支持

描述

check_mode

支持: 完全

可以在 check_mode 中运行,并在不修改实体的情况下返回更改状态预测

diff_mode

支持: 完全

在 diff 模式下,将返回有关已更改的内容(或在 check_mode 中可能需要更改的内容)的详细信息

示例

- name: Create SCAP content
  theforeman.foreman.scap_content:
    title: "Red Hat firefox default content"
    scap_file: "/home/user/Downloads/ssg-firefox-ds.xml"
    original_filename: "ssg-firefox-ds.xml"
    organizations:
      - "Default Organization"
    locations:
      - "Default Location"
    server_url: "https://foreman.example.com"
    username: "admin"
    password: "changeme"
    state: present

- name: Update SCAP content
  theforeman.foreman.scap_content:
    title: "Red Hat firefox default content"
    updated_title: "Updated scap content title"
    scap_file: "/home/user/Downloads/updated-ssg-firefox-ds.xml"
    original_filename: "updated-ssg-firefox-ds.xml"
    organizations:
      - "Org One"
      - "Org Two"
    locations:
      - "Loc One"
      - "Loc Two"
    server_url: "https://foreman.example.com"
    username: "admin"
    password: "changeme"
    state: present

- name: Delete SCAP content
  theforeman.foreman.scap_content:
    title: "Red Hat firefox default content"
    server_url: "https://foreman.example.com"
    username: "admin"
    password: "changeme"
    state: absent

返回值

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

描述

entity

字典

受影响实体的最终状态,按其类型分组。

返回: 成功

scap_contents

列表 / 元素=字典

scap 内容的列表。

返回: 成功

作者

  • Jameer Pathan (@jameerpathan111)