Prepare 3.0.0 release (#318)

* Prepare 3.0.0 release.

* Install using ansible-galaxy via git instead of cloning directly.
This commit is contained in:
Felix Fontein 2024-10-18 21:01:46 +02:00 committed by GitHub
parent 26e3aa3e0a
commit e18de43407
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 37 additions and 465 deletions

View file

@ -20,16 +20,14 @@ description:
- The module always indicates a (changed) status. You can use
R(the changed_when task property,override_the_changed_result) to determine
whether a command task actually resulted in a change or not.
notes:
- The module declares that it B(supports check mode). This is a bug and will
be changed in community.routeros 3.0.0.
extends_documentation_fragment:
- community.routeros.attributes
attributes:
check_mode:
support: partial
support: none
details:
- The module claims to support check mode, but it simply always executes the command.
- Before community.routeros 3.0.0, the module claimed to support check mode.
It simply executed the command in check mode.
diff_mode:
support: none
platform:
@ -165,7 +163,7 @@ def main():
argument_spec.update(routeros_argument_spec)
module = AnsibleModule(argument_spec=argument_spec,
supports_check_mode=True)
supports_check_mode=False)
result = {'changed': False}