From f7233c389c358cce2a7f20e580a966581c6c774e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com> Date: Thu, 17 Jun 2021 12:34:20 +0200 Subject: [PATCH] Double escape comments --- README.md | 2 +- defaults/main.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 904124e..40b6448 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Role Variables Variables from default directory : * tuleap_url: URL for accessing Tuleap * tuleap_db_root_pass : Root password for MySQL database -* Backups : +* Backups (for backups to be deployed, host needs to be in maintenance_contract group) : * swift parameters for 2 object storage instances where backups should be pushed daily * tuleap_backup_pass : Passphrase for encryption of backups diff --git a/defaults/main.yml b/defaults/main.yml index 01c7ee4..cedaabf 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,11 +1,11 @@ --- -# Tuleap URL (only sub.domain without https:// in front) +## Tuleap URL (only sub.domain without https:// in front) tuleap_url: "tuleap.example.org" -# Tuleap DB +## Tuleap DB tuleap_db_root_pass: "veryUnsecurePassToBeModified" -# Backups -# Parameters for pushing backups to Object Storage - Instance 1 +## Backups +## Parameters for pushing backups to Object Storage - Instance 1 swift_odoo_authurl: https://auth.cloud.ovh.net/v3/ swift_odoo_authversion: 3 swift_odoo_tenantid: "132e1fa" @@ -13,7 +13,7 @@ swift_odoo_tenantname: "12312534534" swift_odoo_username: "testuser" swift_odoo_password: "testpassword" swift_odoo_regionname: "GRA" -# Parameters for pushing backups to Object Storage - Instance 2 +## Parameters for pushing backups to Object Storage - Instance 2 swift_odoo2_authurl: https://auth.cloud.ovh.net/v3/ swift_odoo2_authversion: 3 swift_odoo2_tenantid: "12323534ab" @@ -21,5 +21,5 @@ swift_odoo2_tenantname: "123124235345" swift_odoo2_username: "testuser" swift_odoo2_password: "testpassword" swift_odoo2_regionname: "DE" -# Passphrase for backups encryption +## Passphrase for backups encryption tuleap_backup_pass: notSecureEnoughPasswordToBeModified -- GitLab