From 98bfd83847af9a0f1d0d8097cbc0fed72a159981 Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Sat, 18 Jun 2016 09:59:04 +0200 Subject: [PATCH] Use uniform commenting style in tasks and defaults. Either: ``# .. $comment`` Use whenever a comment is not intended for humans like folding marks or instructs for your editor. ``# $comment`` Use whenever a comment is intended for humans. This way, the comments can be easily moved around from tasks to defaults and vise versa and it is ensured that only the comments intended for humans make it into the documentation builds. --- tasks/configure_owncloud.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/configure_owncloud.yml b/tasks/configure_owncloud.yml index fa9c64b..ab41b2f 100644 --- a/tasks/configure_owncloud.yml +++ b/tasks/configure_owncloud.yml @@ -29,7 +29,7 @@ - '{{ owncloud_deploy_path }}/config/custom.config.php' tags: [ 'role::owncloud:setup' ] -# ]]] +# .. ]]] # Logging [[[ ## ownCloud as of Version 9.0 does not do log rotate by default. This could @@ -41,7 +41,7 @@ owner: 'root' group: 'root' mode: '0644' -# ]]] +# .. ]]] # Setup the occ command [[[ @@ -64,7 +64,7 @@ mode: 0755 tags: [ 'role::owncloud:occ' ] -# ]]] +# .. ]]] # Auto setup [[[ @@ -128,7 +128,7 @@ owncloud_auto_finish_setup.status is defined and owncloud_auto_finish_setup.status|int != 200 -# ]]] +# .. ]]] # Run occ commands as specified in the inventory [[[ - name: Run occ commands as specified in the inventory @@ -138,7 +138,7 @@ - '{{ owncloud_run_occ_global_commands }}' - '{{ owncloud_run_occ_group_commands }}' - '{{ owncloud_run_occ_host_commands }}' -# ]]] +# .. ]]] # Configure cron job for background tasks [[[ @@ -169,4 +169,4 @@ job: '/usr/bin/php -f {{ owncloud_deploy_path }}/cron.php' cron_file: 'owncloud' -# ]]] +# .. ]]]