Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simeononsecurity/ansible_system_update
This Ansible role automates the patching of both Linux and Windows systems, allowing you to keep your infrastructure up-to-date with the latest security updates.
https://github.com/simeononsecurity/ansible_system_update
ansible ansible-galaxy ansible-role automation linux patching windows
Last synced: 3 months ago
JSON representation
This Ansible role automates the patching of both Linux and Windows systems, allowing you to keep your infrastructure up-to-date with the latest security updates.
- Host: GitHub
- URL: https://github.com/simeononsecurity/ansible_system_update
- Owner: simeononsecurity
- License: mit
- Created: 2023-06-02T15:00:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-26T23:02:47.000Z (6 months ago)
- Last Synced: 2024-07-27T00:22:11.672Z (6 months ago)
- Topics: ansible, ansible-galaxy, ansible-role, automation, linux, patching, windows
- Homepage: https://simeononsecurity.com/articles/secure-coding-standards-for-ansible/
- Size: 17.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role: system_update
[![Sponsor](https://img.shields.io/badge/Sponsor-Click%20Here-ff69b4)](https://github.com/sponsors/simeononsecurity)
This Ansible role combines the functionality of two separate roles, namely [`linux_update`](https://github.com/simeononsecurity/ansible_linux_update) and [`windows_update`](https://github.com/simeononsecurity/ansible_windows_update), into a single role called `system_update`. The `system_update` role can be used to automate the patching of both Linux and Windows systems using Ansible.
Please make sure you have met the following requirements before using this role:
- Linux hosts and or Windows hosts
- Ansible 2.10 or later## Requirements
- Linux hosts and or Windows hosts
- Ansible 2.10 or later## Role Variables
None
## Dependencies
None
## Usage
### Installation
```bash
ansible-galaxy install simeononsecurity.system_update
```To use this role, include it in your playbook as shown in the example below:
```yaml
- name: Apply system updates
hosts: all
become: yesroles:
- system_update
```## License:
MIT## Author Information:
This role was created by SimeonOnSecurity.
For more information, visit [SimeonOnSecurity.com](https://SimeonOnSecurity.com).## [Learn more about Ansible Best Practice](https://simeononsecurity.com/articles/secure-coding-standards-for-ansible/)