Browse Source

Merge pull request #44 from westurner/add_install_from_ppa

BUG: pkgrepo.absent, pkgrepo:watch_in(pkg), install_from_ppa
susefix
Forrest 10 years ago
parent
commit
90c539de8c
4 changed files with 46 additions and 4 deletions
  1. +21
    -1
      nginx/ng/install.sls
  2. +2
    -1
      nginx/ng/map.jinja
  3. +1
    -1
      nginx/ng/service.sls
  4. +22
    -1
      nginx/package.sls

+ 21
- 1
nginx/ng/install.sls View File

@@ -5,10 +5,30 @@
{% from 'nginx/ng/map.jinja' import nginx, sls_block with context %}

nginx_install:
{% if nginx.from_source %}
{% if nginx.install_from_source %}
## add source compilation here
{% else %}
pkg.installed:
{{ sls_block(nginx.package.opts) }}
- name: {{ nginx.lookup.package }}
{% endif %}

{% if salt['grains.get']('os_family') == 'Debian' %}
nginx_ppa_repo:
pkgrepo:
{%- if nginx.install_from_ppa %}
- managed
{%- else %}
- absent
{%- endif %}
- humanname: nginx-ppa-{{ grains['oscodename'] }}
- name: deb http://ppa.launchpad.net/nginx/stable/ubuntu {{ grains['oscodename'] }} main
- file: /etc/apt/sources.list.d/nginx-stable-{{ grains['oscodename'] }}.list
- dist: {{ grains['oscodename'] }}
- keyid: C300EE8C
- keyserver: keyserver.ubuntu.com
- require_in:
- pkg: nginx_install
- watch_in:
- pkg: nginx_install
{% endif %}

+ 2
- 1
nginx/ng/map.jinja View File

@@ -25,7 +25,8 @@
'vhost_use_symlink': False,
},
}, default='Debian' ),
'from_source': False,
'install_from_source': False,
'install_from_ppa': False,
'package': {
'opts': {},
},

+ 1
- 1
nginx/ng/service.sls View File

@@ -16,6 +16,6 @@ nginx_service:
- require:
- sls: nginx.ng.install
- watch:
{% if not nginx.from_source %}
{% if not nginx.install_from_source %}
- pkg: nginx_install
{% endif %}

+ 22
- 1
nginx/package.sls View File

@@ -1,3 +1,4 @@
{% from "nginx/map.jinja" import nginx with context %}
{% set use_upstart = pillar.get('nginx', {}).get('use_upstart', true) %}
{% if use_upstart %}
nginx-old-init:
@@ -35,9 +36,29 @@ nginx-old-init-disable:
- file: nginx-old-init
{% endif %}

{% if salt['grains.get']('os_family') == 'Debian' %}
nginx-ppa-repo:
pkgrepo:
{%- if nginx.install_from_ppa %}
- managed
{%- else %}
- absent
{%- endif %}
- humanname: nginx-ppa-{{ grains['oscodename'] }}
- name: deb http://ppa.launchpad.net/nginx/stable/ubuntu {{ grains['oscodename'] }} main
- file: /etc/apt/sources.list.d/nginx-stable-{{ grains['oscodename'] }}.list
- dist: {{ grains['oscodename'] }}
- keyid: C300EE8C
- keyserver: keyserver.ubuntu.com
- require_in:
- pkg: nginx
- watch_in:
- pkg: nginx
{% endif %}

nginx:
pkg.installed:
- name: nginx
- name: {{ nginx.package }}
{% if use_upstart %}
file:
- managed

Loading…
Cancel
Save