theforeman.foreman.partition_table 模块 – 管理分区表模板
注意
此模块是 theforeman.foreman 集合 (版本 4.2.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install theforeman.foreman
。您需要其他要求才能使用此模块,有关详细信息,请参见 要求。
要在剧本中使用它,请指定:theforeman.foreman.partition_table
。
theforeman.foreman 1.0.0 中的新增功能
概要
管理分区表模板
别名:foreman_ptable
要求
执行此模块的主机需要以下要求。
requests
参数
参数 |
注释 |
---|---|
要导入的模板文件的路径。 此参数或 *layout* 参数是分区模板“内容”的必需来源之一。 |
|
分区表模板的内容 此参数或 *file_name* 参数是分区模板“内容”的必需来源之一。 |
|
应将实体分配到的位置列表 |
|
确定模板是否应被锁定 选项
|
|
分区表的名称。 如果省略,将从模板的 特殊值“*”可用于对所有现有分区表执行批量操作(修改、删除)。 |
|
应将实体分配到的组织列表 |
|
应为其分配模板的操作系统系列。 选项
|
|
访问 Foreman 服务器的用户的密码。 如果任务中未指定该值,则将改用环境变量 |
|
Foreman 服务器的 URL。 如果任务中未指定该值,则将改用环境变量 |
|
实体的状态
选项
|
|
模板的新名称。设置此参数后,模块将不再是幂等的。 |
|
访问 Foreman 服务器的用户名。 如果任务中未指定该值,则将改用环境变量 |
|
是否验证 Foreman 服务器的 TLS 证书。 如果任务中未指定该值,则将改用环境变量 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 |
可以在 check_mode 下运行,并在不修改实体的情况下返回更改状态预测 |
|
支持:完全支持 |
在 diff 模式下,将返回有关已更改内容(或在 check_mode 下可能需要更改的内容)的详细信息 |
示例
# Keep in mind, that in this case, the inline parameters will be overwritten
- name: "Create a Partition Table inline"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
name: A New Partition Template
state: present
layout: |
<%#
name: A Partition Template
%>
zerombr
clearpart --all --initlabel
autopart
locations:
- Gallifrey
organizations:
- TARDIS INC
- name: "Create a Partition Template from a file"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
file_name: timeywimey_template.erb
state: present
locations:
- Gallifrey
organizations:
- TARDIS INC
- name: "Delete a Partition Template"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
name: timeywimey
layout: |
<%#
dummy:
%>
state: absent
- name: "Create a Partition Template from a file and modify with parameter(s)"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
file_name: timeywimey_template.erb
name: Wibbly Wobbly Template
state: present
locations:
- Gallifrey
organizations:
- TARDIS INC
# Providing a name in this case wouldn't be very sensible.
# Alternatively make use of with_filetree to parse recursively with filter.
- name: "Parsing a directory of partition templates"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
file_name: "{{ item }}"
state: present
locations:
- SKARO
organizations:
- DALEK INC
with_fileglob:
- "./arsenal_templates/*.erb"
# If the templates are stored locally and the ansible module is executed on a remote host
- name: Ensure latest version of all Ptable Community Templates
theforeman.foreman.partition_table:
server_url: "https://foreman.example.com"
username: "admin"
password: "changeme"
state: present
layout: '{{ lookup("file", item.src) }}'
with_filetree: '/path/to/partition/tables'
when: item.state == 'file'
# with name set to "*" bulk actions can be performed
- name: "Delete *ALL* partition tables"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
name: "*"
state: absent
- name: "Assign all partition tables to the same organization(s)"
theforeman.foreman.partition_table:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
name: "*"
state: present
organizations:
- DALEK INC
- sky.net
- Doc Brown's garage
返回值
常见的返回值已在 此处 记录,以下是此模块独有的字段
键 |
描述 |
---|---|
按其类型分组的受影响实体的最终状态。 返回:成功 |
|
分区表的列表。 返回:成功 |