diff --git a/README.md b/README.md index 480820e12894ff39181e22219eaa0aa2f2179b4f..d2350b9d2a579bf01058fbe7c68778749ac4ea57 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Variables from default directory : * odoo_master_pass: Odoo Master Password (required for operations on database from Web interface) * odoo_version: Odoo version to be deployed (defaults to 10.0) * odoo_bin_name: Odoo executable (defaults to odoo-bin which is in use since version 10.0) +* default_maintenance_email: e-mail used to generate Let's Encrypt SSL certificate * Custom modules to be added to Odoo sources: * custom_modules_base_url: Where to fetch custom modules from (defaults to https://sources.le-filament.com/lefilament) * odoo_custom_modules: list of custom modules to be fetched from previous URL @@ -54,6 +55,7 @@ Example Playbook - { odoo_url: "odoo.example.org" } - { odoo_master_pass: "odooMasterPasswordToBeModified" } - { odoo_version: "10.0" } + - { default_maintenance_email: "maintenance@example.org" } License diff --git a/defaults/main.yml b/defaults/main.yml index 75e4653e3e2fe4385e35d8e86246baa0d73d56e1..541bb15ce522a377e74f72f1101de434b67e3760 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -11,6 +11,9 @@ odoo_url: "odoo.example.org" # Odoo Master password odoo_master_pass: "odooMasterPasswordToBeModified" +# E-mail used to generate Let's Encrypt SSL certificate +default_maintenance_email: "maintenance@example.org" + # Odoo vesion and daemon name odoo_version: "10.0" odoo_bin_name: "odoo-bin"