Drop not used heat/control.sls

control.sls is not used anywhere and tryint to heat.control
blow as control is not set in map while control.ssl imports it.

If in future we decide to manage heat stacks by SF it should be
done via client.

Change-Id: I26f6977bb0bcd9675d9b791a66644e96bae11cca
diff --git a/README.rst b/README.rst
index 41b793b..53797d5 100644
--- a/README.rst
+++ b/README.rst
@@ -119,23 +119,6 @@
               revision: master
 
 
-Heat system definition of several stacks/systems
-
-.. code-block:: yaml
-
-    heat:
-      control:
-        enabled: true
-        system:
-          web_production:
-            format: hot
-            template_file: /srv/heat/template/web_cluster.hot
-            environment: /srv/heat/env/web_cluster/prd.env
-          web_staging:
-            format: hot
-            template_file: /srv/heat/template/web_cluster.hot
-            environment: /srv/heat/env/web_cluster/stg.env
-
 Ceilometer notification
 
 .. code-block:: yaml
diff --git a/heat/control.sls b/heat/control.sls
deleted file mode 100644
index ecb16bf..0000000
--- a/heat/control.sls
+++ /dev/null
@@ -1,14 +0,0 @@
-{%- from "heat/map.jinja" import control with context %}
-{%- for system_name, system in control.system.iteritems() %}
-
-heat_stack_{{ system_name }}:
-  heat.stack_present:
-  - name: {{ system_name }}
-  {%- if system.template_file is defined %}
-  - template_file: {{ system.template_file }}
-  {%- endif %}
-  {%- if system.environment_file is defined %}
-  - environment_file: {{ system.environment_file }}
-  {%- endif %}
-
-{%- endfor %}
\ No newline at end of file