Explorar el Código

Added basic formula to install Apache

master
Seth House hace 11 años
padre
commit
053c3443d7
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. +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

Cargando…
Cancelar
Guardar