From 8a1fd737984c0c5bc9be76459c573df4900e7ffe Mon Sep 17 00:00:00 2001 From: Aneesh Joseph Date: Sun, 24 Jul 2016 01:01:47 +0530 Subject: [PATCH] fix formatting issues --- docsite/rst/galaxy.rst | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/docsite/rst/galaxy.rst b/docsite/rst/galaxy.rst index a6e218a7f8..db7bb5ee57 100644 --- a/docsite/rst/galaxy.rst +++ b/docsite/rst/galaxy.rst @@ -72,22 +72,24 @@ Installing Multiple Roles From Multiple Files ============================================= At a basic level, including requirements files allows you to break up bits of configuration policy into smaller files. Role includes pull in roles from other files. - - ansible-galaxy install -r requirements.yml - - # from galaxy - - src: yatesr.timezone - - - include: webserver.yml +:: + ansible-galaxy install -r requirements.yml + +Content of requirements.yml +:: + # from github + - src: yatesr.timezone + + - include: webserver.yml Content of the webserver.yml file. - - # from github - - src: https://github.com/bennojoy/nginx - - # from github installing to a relative path - - src: https://github.com/bennojoy/nginx +:: + # from github + - src: https://github.com/bennojoy/nginx + + # from github installing to a relative path + - src: https://github.com/bennojoy/nginx path: vagrant/roles/ Advanced Control over Role Requirements Files