summaryrefslogtreecommitdiff
path: root/test/integration/targets/group
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2019-04-02 09:58:04 -0400
committerBrian Coca <bcoca@users.noreply.github.com>2019-04-02 09:58:04 -0400
commit579e72573a32073e6c438915178e055ccdfb4ef4 (patch)
tree4ab1c56c9616d986bf032c126f6acf2f790b7df6 /test/integration/targets/group
parentfbaa6c33caab85a0f71c39142d0ea7ed71e30515 (diff)
downloadansible-579e72573a32073e6c438915178e055ccdfb4ef4.tar.gz
Add BusyBox support to group module (#54689)
* Add BusyBox support to group module * Use bytes when reading/writing to file
Diffstat (limited to 'test/integration/targets/group')
-rw-r--r--test/integration/targets/group/tasks/tests.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/targets/group/tasks/tests.yml b/test/integration/targets/group/tasks/tests.yml
index 86a7702330..2c625c12a4 100644
--- a/test/integration/targets/group/tasks/tests.yml
+++ b/test/integration/targets/group/tasks/tests.yml
@@ -11,7 +11,7 @@
check_mode: True
- name: get result of create group (check mode)
- script: grouplist.sh "{{ ansible_distribution }}"
+ script: 'grouplist.sh "{{ ansible_distribution }}"'
register: create_group_actual_check
- name: assert create group (check mode)
@@ -27,7 +27,7 @@
register: create_group
- name: get result of create group
- script: grouplist.sh "{{ ansible_distribution }}"
+ script: 'grouplist.sh "{{ ansible_distribution }}"'
register: create_group_actual
- name: assert create group
@@ -89,7 +89,7 @@
check_mode: True
- name: get result of create a group with a gid (check mode)
- script: grouplist.sh "{{ ansible_distribution }}"
+ script: 'grouplist.sh "{{ ansible_distribution }}"'
register: create_group_gid_actual_check
- name: assert create group with a gid (check mode)
@@ -143,7 +143,7 @@
that:
- create_group_gid_non_unique is changed
- create_group_gid_non_unique.gid | int == gid.stdout_lines[0] | int
- when: ansible_facts.system != 'Darwin'
+ when: ansible_facts.distribution not in ['MacOSX', 'Alpine']
##
## group remove