mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 15:15:26 +01:00
Compare commits
No commits in common. "ae0380d671c45c4463ecbec980458a689812a27a" and "202609e4256efd674a9eda7e847e33bb76c20025" have entirely different histories.
ae0380d671
...
202609e425
2 changed files with 2 additions and 5 deletions
|
|
@ -1,3 +0,0 @@
|
|||
---
|
||||
bugfixes:
|
||||
- "Fix sysctl integration test failing on newer versions of core. Previously NoneType was allowable, now it fails to convert to a str type."
|
||||
|
|
@ -170,7 +170,7 @@
|
|||
|
||||
- name: Try sysctl with no name
|
||||
sysctl:
|
||||
name: ""
|
||||
name:
|
||||
value: 1
|
||||
sysctl_set: yes
|
||||
ignore_errors: True
|
||||
|
|
@ -180,7 +180,7 @@
|
|||
assert:
|
||||
that:
|
||||
- sysctl_no_name is failed
|
||||
- "sysctl_no_name.msg == 'name cannot be blank'"
|
||||
- "sysctl_no_name.msg == 'name cannot be None'"
|
||||
|
||||
- name: Try sysctl with no value
|
||||
sysctl:
|
||||
|
|
|
|||
Loading…
Reference in a new issue