1234567891011121314151617 |
- ---
- # This playbook create a new container for odoo 8.0
- - hosts: all
- remote_user: administrador
- vars_prompt:
- - name: "odoo_system_name"
- prompt: "What's the system name?"
- private: no
- - name: "odoo_system_port"
- prompt: "What's the system port?"
- default: 8069
- private: no
-
- roles:
- - common
|