community.general.lbu 模块 – Alpine Linux 的本地备份实用程序

注意

此模块是 community.general 集合 (版本 10.1.0) 的一部分。

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

要安装它,请使用: ansible-galaxy collection install community.general

要在 playbook 中使用它,请指定: community.general.lbu

community.general 0.2.0 中的新增功能

概要

  • 管理 Alpine Linux 中以内存运行模式运行的本地备份实用程序

参数

参数

注释

commit

布尔值

控制是否提交更改的文件。

选项

  • false

  • true

exclude

列表 / 元素=字符串

要排除的路径列表。

include

列表 / 元素=字符串

要包含的路径列表。

属性

属性

支持

描述

check_mode

支持:完全支持

可以在 check_mode 下运行,并在不修改目标的情况下返回更改状态预测。

diff_mode

支持:不支持

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

示例

# Commit changed files (if any)
- name: Commit
  community.general.lbu:
    commit: true

# Exclude path and commit
- name: Exclude directory
  community.general.lbu:
    commit: true
    exclude:
    - /etc/opt

# Include paths without committing
- name: Include file and directory
  community.general.lbu:
    include:
    - /root/.ssh/authorized_keys
    - /var/lib/misc

返回值

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

描述

msg

字符串

错误消息

返回:失败时

作者

  • Kaarle Ritvanen (@kunkku)