1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-03 23:01:48 +00:00

Change yes/no to true/false in the modules (#561)

Fix #560
Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sergey 2023-03-08 23:28:52 +02:00 committed by GitHub
parent dba0d78844
commit 0332db2aad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 33 additions and 33 deletions

View file

@ -53,7 +53,7 @@ and modules name that you want to use:
image: redis
command: redis-server --appendonly yes
state: present
recreate: yes
recreate: true
expose:
- 6379
volumes_from:
@ -73,7 +73,7 @@ Or you can add full namespace and collection name in the `collections` element:
podman_image:
name: nginx
path: /path/to/build/dir
push: yes
push: true
push_args:
dest: quay.io/acme
```