-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(formula): align to template-formula & improve ci
BREAKING CHANGE: Module .sls files are moved to /config/modules/ subdirectory. template-formula alignment may introduce a breaking change. See README for states. feat(arch): add archlinux support
- Loading branch information
1 parent
fa93df9
commit 168d70b
Showing
163 changed files
with
6,020 additions
and
2,605 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config/certificates/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=sls | ||
|
||
include: | ||
- .service.clean | ||
- .config.clean | ||
- .package.clean |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=sls | ||
|
||
{%- set tplroot = tpldir.split('/')[0] %} | ||
{%- set sls_service_running = tplroot ~ '.service.running' %} | ||
{%- from tplroot ~ "/map.jinja" import apache with context %} | ||
include: | ||
- {{ sls_service_running }} | ||
{%- for site, cert in salt['pillar.get']('apache:sites', {}).items() %} | ||
{%- if cert.SSLCertificateKeyFile is defined %} | ||
apache_cert_config_clean_{{ site }}_key_file: | ||
file.absent: | ||
- name: {{ cert.SSLCertificateKeyFile }} | ||
- watch_in: | ||
- module: apache-service-running-reload | ||
- require_in: | ||
- module: apache-service-running-restart | ||
- module: apache-service-running-reload | ||
- service: apache-service-running | ||
{%- endif %} | ||
{%- if cert.SSLCertificateFile is defined %} | ||
apache_cert_config_clean_{{ site }}_cert_file: | ||
file.absent: | ||
- name: {{ cert.SSLCertificateFile }} | ||
- watch_in: | ||
- module: apache-service-running-reload | ||
- require_in: | ||
- module: apache-service-running-restart | ||
- module: apache-service-running-reload | ||
- service: apache-service-running | ||
{%- endif %} | ||
{%- if cert.SSLCertificateChainFile is defined %} | ||
apache_cert_config_clean_{{ site }}_bundle_file: | ||
file.managed: | ||
- name: {{ cert.SSLCertificateChainFile }} | ||
- watch_in: | ||
- module: apache-service-running-reload | ||
- require_in: | ||
- module: apache-service-running-restart | ||
- module: apache-service-running-reload | ||
- service: apache-service-running | ||
{%- endif %} | ||
{%- endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=sls | ||
|
||
include: | ||
- .install |
Oops, something went wrong.