mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +00:00
* Bump version to 11.0.0. * Removed deprecated plugins/modules. * Remove _init_session(). * Remove ack_venv_creation_deprecation. * Change behavior of state. * Remove value reading. * Remove list_all. * Remove various deprecated module helper things. * Change default of proxmox's update parameter. * Fix constructor command order. Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> * MH: adjust guide --------- Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> Co-authored-by: Alexei Znamensky <russoz@gmail.com>
38 lines
927 B
YAML
38 lines
927 B
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- import_tasks: setup_no_value.yml
|
|
|
|
- name: setting value
|
|
git_config:
|
|
name: core.name
|
|
value: foo
|
|
scope: global
|
|
register: set_result1
|
|
|
|
- name: setting another value for same name
|
|
git_config:
|
|
name: core.name
|
|
value: bar
|
|
scope: global
|
|
register: set_result2
|
|
|
|
- name: getting value
|
|
git_config_info:
|
|
name: core.name
|
|
scope: global
|
|
register: get_result
|
|
|
|
- name: assert set changed and value is correct
|
|
assert:
|
|
that:
|
|
- set_result1 is changed
|
|
- set_result2 is changed
|
|
- get_result.config_value == 'bar'
|
|
- set_result1.diff.before == "\n"
|
|
- set_result1.diff.after == "foo\n"
|
|
- set_result2.diff.before == "foo\n"
|
|
- set_result2.diff.after == "bar\n"
|
|
...
|