Fix salt/api.sls.
Signed-off-by: René Jochum <rene@jochums.at>
This commit is contained in:
		
							parent
							
								
									7bb82b0178
								
							
						
					
					
						commit
						8a1b8dc9db
					
				
							
								
								
									
										17
									
								
								salt/api.sls
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								salt/api.sls
									
									
									
									
									
								
							| @ -9,40 +9,39 @@ include: | ||||
| {%- set cfg_salt = pillar.get('salt', {}) %} | ||||
| {%- set cfg_master = cfg_salt.get('master', {}) %} | ||||
| 
 | ||||
| salt-api: | ||||
| salt_api_install: | ||||
|   pkg.installed: | ||||
|     - name: {{ salt_settings['salt-api'] }} | ||||
|     - name: {{ salt_settings['salt_api'] }} | ||||
|   service.running: | ||||
|     - name: {{ salt_settings.get('api_service', 'salt-api') }} | ||||
|     - require: | ||||
|       - service: {{ salt_settings.get('api_service', 'salt-api') }} | ||||
| {%- if 'rest_cherrypy' in cfg_master %} | ||||
|       - pip: salt-api-cherrypy | ||||
|       - pip: salt_api_cherrypy | ||||
| {% elif 'rest_tornado' in cfg_master %} | ||||
|       - pip: salt-api-tornado | ||||
|       - pip: salt_api_tornado | ||||
| {% endif %} | ||||
|     - watch: | ||||
|       - pkg: salt-master | ||||
|       - file: salt-master | ||||
| 
 | ||||
| {%- if 'rest_cherrypy' in cfg_master %} | ||||
| salt-api-cherrypy: | ||||
| salt_api_cherrypy: | ||||
|   pkg.purged: | ||||
|     - name: {{ salt_settings['python-cherrypy'] }} | ||||
|   pip.installed: | ||||
|     - name: cherrypy | ||||
|     - require: | ||||
|       - pkg: salt-api-cherrypy | ||||
|       - pkg: salt_api_cherrypy | ||||
|       - pkg: pip_extensions | ||||
| {% endif %} | ||||
| 
 | ||||
| {%- if 'rest_tornado' in cfg_master %} | ||||
| salt-api-tornado: | ||||
| salt_api_tornado: | ||||
|   pkg.purged: | ||||
|     - name: {{ salt_settings['python-tornado'] }} | ||||
|   pip.installed: | ||||
|     - name: tornado | ||||
|     - require: | ||||
|       - pkg: salt-api-tornado | ||||
|       - pkg: salt_api_tornado | ||||
|       - pkg: pip_extensions | ||||
| {% endif %} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 René Jochum
						René Jochum