From 097760b6a0e281677976d19ca28afefde17a2f69 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Thu, 29 Sep 2016 06:43:48 +0000 Subject: [PATCH] Remove non-used plays from teh playbook: Signed-off-by: Patrick Uiterwijk --- roles/planet/tasks/main.yml | 85 +++---------------------------------- 1 file changed, 5 insertions(+), 80 deletions(-) diff --git a/roles/planet/tasks/main.yml b/roles/planet/tasks/main.yml index 0972a3adcb..8519805640 100644 --- a/roles/planet/tasks/main.yml +++ b/roles/planet/tasks/main.yml @@ -121,20 +121,6 @@ tags: - planet_server -- name: copy templates (design) - copy: src=sub-planets/design/{{ item }} dest=/srv/planet/config/design/ owner=planet-user group=planet-user - with_items: - - templates - tags: - - planet_server - -- name: copy the css and images (design) - synchronize: src=sub-planets/design/{{ item }}/ dest=/srv/planet/site/design/{{ item }}/ - with_items: - - css - - images - tags: - - planet_server # # desktop # @@ -162,21 +148,6 @@ tags: - planet_server -- name: copy templates (desktop) - copy: src=sub-planets/desktop/{{ item }} dest=/srv/planet/config/desktop/ owner=planet-user group=planet-user - with_items: - - templates - tags: - - planet_server - -- name: copy the css and images (desktop) - synchronize: src=sub-planets/desktop/{{ item }}/ dest=/srv/planet/site/desktop/{{ item }}/ - with_items: - - css - - images - tags: - - planet_server - # # edited # @@ -204,21 +175,6 @@ tags: - planet_server -- name: copy templates (edited) - copy: src=sub-planets/edited/{{ item }} dest=/srv/planet/config/edited/ owner=planet-user group=planet-user - with_items: - - templates - tags: - - planet_server - -- name: copy the css and images (edited) - synchronize: src=sub-planets/edited/{{ item }}/ dest=/srv/planet/site/edited/{{ item }}/ - with_items: - - css - - images - tags: - - planet_server - # # people # @@ -238,11 +194,6 @@ tags: - planet_server -- name: copy the planet fpbulder.conf (people) - copy: src=fpbuilder.conf dest=/etc/planet/fpbuilder.conf - tags: - - planet_server - - name: copy the css and images (people) synchronize: src=sub-planets/people/{{ item }}/ dest=/srv/planet/site/{{ item }}/ with_items: @@ -251,6 +202,11 @@ tags: - planet_server +- name: copy the planet fpbulder.conf (people) + copy: src=fpbuilder.conf dest=/etc/planet/fpbuilder.conf + tags: + - planet_server + # # security # @@ -278,21 +234,6 @@ tags: - planet_server -- name: copy templates (security) - copy: src=sub-planets/security/{{ item }} dest=/srv/planet/config/security/ owner=planet-user group=planet-user - with_items: - - templates - tags: - - planet_server - -- name: copy the css and images (security) - synchronize: src=sub-planets/security/{{ item }}/ dest=/srv/planet/site/security/{{ item }}/ - with_items: - - css - - images - tags: - - planet_server - # # summer-coding # @@ -319,19 +260,3 @@ copy: src=sub-planets/summer-coding/base_config dest=/etc/planet/summer-coding/base_config mode=0644 owner=root group=root tags: - planet_server - -- name: copy templates (summer-coding) - copy: src=sub-planets/summer-coding/{{ item }} dest=/srv/planet/config/summer-coding/ owner=planet-user group=planet-user - with_items: - - templates - tags: - - planet_server - -- name: copy the css and images (summer-coding) - synchronize: src=sub-planets/summer-coding/{{ item }}/ dest=/srv/planet/site/summer-coding/{{ item }}/ - with_items: - - css - - images - tags: - - planet_server -