mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Adjust booleans in packaging modules. (#5154)
This commit is contained in:
@@ -21,7 +21,7 @@ options:
|
||||
description:
|
||||
- Whether to accept the license for the package(s).
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
name:
|
||||
description:
|
||||
- One or more packages to install or remove.
|
||||
@@ -49,28 +49,28 @@ EXAMPLES = r'''
|
||||
community.general.installp:
|
||||
name: foo
|
||||
repository_path: /repository/AIX71/installp/base
|
||||
accept_license: yes
|
||||
accept_license: true
|
||||
state: present
|
||||
|
||||
- name: Install bos.sysmgt that includes bos.sysmgt.nim.master, bos.sysmgt.nim.spot
|
||||
community.general.installp:
|
||||
name: bos.sysmgt
|
||||
repository_path: /repository/AIX71/installp/base
|
||||
accept_license: yes
|
||||
accept_license: true
|
||||
state: present
|
||||
|
||||
- name: Install bos.sysmgt.nim.master only
|
||||
community.general.installp:
|
||||
name: bos.sysmgt.nim.master
|
||||
repository_path: /repository/AIX71/installp/base
|
||||
accept_license: yes
|
||||
accept_license: true
|
||||
state: present
|
||||
|
||||
- name: Install bos.sysmgt.nim.master and bos.sysmgt.nim.spot
|
||||
community.general.installp:
|
||||
name: bos.sysmgt.nim.master, bos.sysmgt.nim.spot
|
||||
repository_path: /repository/AIX71/installp/base
|
||||
accept_license: yes
|
||||
accept_license: true
|
||||
state: present
|
||||
|
||||
- name: Remove packages bos.sysmgt.nim.master
|
||||
|
||||
Reference in New Issue
Block a user