18 lines
625 B
YAML
18 lines
625 B
YAML
---
|
|
|
|
argument_specs:
|
|
main:
|
|
short_description: "Prepare a system to be managed by Ansible."
|
|
description: >
|
|
Install the minimum required set of packages (python and sudo) to allow Ansible to manage a system.
|
|
This role tries to figure out what to install and uses the raw module to install the packages.
|
|
author: Robert de Bock
|
|
options:
|
|
bootstrap_wait_for_host:
|
|
type: "bool"
|
|
default: no
|
|
description: "Wait for the machine to be available."
|
|
bootstrap_timeout:
|
|
type: "int"
|
|
default: 3
|
|
description: "Time (in seconds) to wait for connection."
|