Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
salt
/
apache-formula
forkeado de
ExternalMirrors/apache-formula
Seguir
1
Destacar
0
Fork
0
Código
Lanzamientos
0
Actividad
Explorar el Código
Added basic formula to install Apache
master
Seth House
hace 11 años
padre
0e86fb8c9d
commit
053c3443d7
Se han
modificado 1 ficheros
con
13 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
+13
-0
apache/init.sls
+ 13
- 0
apache/init.sls
Ver fichero
@@ -0,0 +1,13 @@
{% set pkg = salt['grains.filter_by']({
'Debian': {'name': 'apache2'},
'RedHat': {'name': 'httpd'},
}) %}
apache:
pkg:
- installed
- name: {{ pkg.name }}
service:
- running
- name: {{ pkg.name }}
- enable: True
Escribir
Vista previa
Cargando…
Cancelar
Guardar