support the official nginx.org apt repo for debian users (at least)

This commit is contained in:
Travis J Parker 2014-10-08 14:48:12 -07:00
parent 90c539de8c
commit a3bc2d73bb
2 changed files with 26 additions and 2 deletions

View File

@ -36,10 +36,15 @@ nginx-old-init-disable:
- file: nginx-old-init - file: nginx-old-init
{% endif %} {% endif %}
{% if salt['grains.get']('os_family') == 'Debian' %} {% if grains.get('os_family') == 'Debian' %}
{% set repo_source = pillar.get('nginx', {}).get('repo_source', 'default') %}
{% set use_ppa = repo_source == 'ppa' and grains.get('os') == 'Ubuntu' %}
{% set use_official = repo_source == 'official' and grains.get('os') in ('Ubuntu', 'Debian') %}
nginx-ppa-repo: nginx-ppa-repo:
pkgrepo: pkgrepo:
{%- if nginx.install_from_ppa %} {%- if use_ppa %}
- managed - managed
{%- else %} {%- else %}
- absent - absent
@ -54,6 +59,24 @@ nginx-ppa-repo:
- pkg: nginx - pkg: nginx
- watch_in: - watch_in:
- pkg: nginx - pkg: nginx
nginx-official-repo:
pkgrepo:
{%- if use_official %}
- managed
{%- else %}
- absent
{%- endif %}
- humanname: nginx apt repo
- name: deb http://nginx.org/packages/{{ grains['os'].lower() }}/ {{ grains['oscodename'] }} nginx
- file: /etc/apt/sources.list.d/nginx-official-{{ grains['oscodename'] }}.list
- keyid: ABF5BD827BD9BF62
- keyserver: keyserver.ubuntu.com
- require_in:
- pkg: nginx
- watch_in:
- pkg: nginx
{% endif %} {% endif %}
nginx: nginx:

View File

@ -28,6 +28,7 @@ nginx:
vhost_available: /etc/nginx/sites-available vhost_available: /etc/nginx/sites-available
vhost_enabled: /etc/nginx/sites-enabled vhost_enabled: /etc/nginx/sites-enabled
vhost_use_symlink: True vhost_use_symlink: True
repo_source: official
# Source compilation is not currently a part of nginx.ng # Source compilation is not currently a part of nginx.ng
from_source: False from_source: False