mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-09 17:07:44 +01:00
9 lines
122 B
YAML
9 lines
122 B
YAML
|
---
|
||
|
- hosts: webservers
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Build webservers
|
||
|
include_role:
|
||
|
name: webserver
|
||
|
|