4 Commits

Author SHA1 Message Date
Pavel Knoblokh
601bb5392f Merge 817b94dee0 into 44a2151dbf 2025-01-13 04:32:43 +00:00
Pavel Knoblokh
817b94dee0 sysctl: Update custom sysctl file example 2025-01-13 14:18:30 +10:00
softwarefactory-project-zuul[bot]
44a2151dbf Merge pull request #604 from saito-hideki/pr/bump_up_version_3.0.0
Bump version to 3.0.0 for the next release

SUMMARY
Bump version to 3.0.0 for the next release on main branch:

Fixes #603

ISSUE TYPE

Feature Pull Request

COMPONENT NAME

ansible.posix

ADDITIONAL INFORMATION

None
2024-12-10 08:59:03 +00:00
Hideki Saito
83288b9020 Bump version to 3.0.0 for the next release
* Fixes #603

Signed-off-by: Hideki Saito <saito@fgrep.org>
2024-12-10 17:30:22 +09:00
3 changed files with 8 additions and 5 deletions

View File

@@ -0,0 +1,2 @@
trivial:
- Bump version to 3.0.0 for the next release (https://github.com/ansible-collections/ansible.posix/issues/603).

View File

@@ -1,7 +1,7 @@
---
namespace: ansible
name: posix
version: 2.0.0
version: 3.0.0
readme: README.md
authors:
- Ansible (github.com/ansible)

View File

@@ -73,12 +73,13 @@ EXAMPLES = r'''
state: absent
sysctl_file: /etc/sysctl.conf
# Set kernel.panic to 3 in /tmp/test_sysctl.conf
# Enable resource limits management in FreeBSD
- ansible.posix.sysctl:
name: kernel.panic
value: '3'
sysctl_file: /tmp/test_sysctl.conf
name: kern.racct.enable
value: '1'
state: present
reload: false
sysctl_file: /boot/loader.conf
# Set ip forwarding on in /proc and verify token value with the sysctl command
- ansible.posix.sysctl: