ansible-playbooks/README.md

24 lines
738 B
Markdown
Raw Normal View History

2024-10-25 18:07:06 +08:00
# Ansible Playbook Repository
This repository contains my Ansible playbook configuration and scripts.
## Installation
To install the Ansible playbook, follow these steps:
1. Clone this repository
2024-10-25 18:07:06 +08:00
2. Install Ansible on your system if you haven't already: `sudo apt-get install ansible`
3. Move into the repository directory: `cd /path/to/ansible-playbooks`
2024-10-25 21:48:54 +08:00
4. Navigate to the repository directory: `cd /path/to/ansible-playbooks`
5. Install required Ansible Galaxy roles using Ansible Galaxy: `ansible-galaxy install -r requirements.yml`
2024-10-25 18:07:06 +08:00
## Usage
To run an Ansible playbook, navigate to the desired playbook directory and execute:
```bash
ansible-playbook -i inventory playbook.yml
2024-10-25 18:07:06 +08:00
```
Don't forget to update hosts in `inventory`!