community.general.sysrc 模块 – 使用 sysrc 管理 FreeBSD
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.general
。
要在剧本中使用它,请指定: community.general.sysrc
。
community.general 2.0.0 中的新增功能
概要
管理 FreeBSD 的
/etc/rc.conf
。
参数
参数 |
注释 |
---|---|
要操作的 jail 的名称或 ID。 |
|
要管理的 |
|
要使用的文件的路径,代替 默认值: |
|
使用 使用 使用 使用 选项
|
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 |
可以在 |
|
支持:不支持 |
在差异模式下,将返回有关已更改内容(或可能需要在 |
备注
注意
name
不能包含句点,因为 sysrc 不支持 OID 样式的名称。
示例
---
# enable mysql in the /etc/rc.conf
- name: Configure mysql pid file
community.general.sysrc:
name: mysql_pidfile
value: "/var/run/mysqld/mysqld.pid"
# enable accf_http kld in the boot loader
- name: Enable accf_http kld
community.general.sysrc:
name: accf_http_load
state: present
value: "YES"
path: /boot/loader.conf
# add gif0 to cloned_interfaces
- name: Add gif0 interface
community.general.sysrc:
name: cloned_interfaces
state: value_present
value: "gif0"
# enable nginx on a jail
- name: Enable nginx in test jail
community.general.sysrc:
name: nginx_enable
value: "YES"
jail: testjail
返回值
常见的返回值已在此处记录,以下是此模块特有的字段
键 |
描述 |
---|---|
返回 sysrc 操作的更改。 返回:始终 示例: |