mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
Merge pull request #23994 from rallytime/skip_test_ubuntu_15
Skip the gpodder pkgrepo test for Ubuntu 15 - they don't have vivid ppa up yet
This commit is contained in:
commit
4cb877307c
@ -68,6 +68,9 @@ epel-salttest:
|
||||
|
||||
# START Ubuntu pkgrepo tests
|
||||
{% set codename = grains['oscodename'] %}
|
||||
|
||||
# The gpodder PPA has not made a package for vivid yet - skip this test for now.
|
||||
{% if codename != 'vivid' %}
|
||||
gpodder-ppa:
|
||||
pkgrepo.managed:
|
||||
- humanname: gPodder PPA
|
||||
@ -76,19 +79,23 @@ gpodder-ppa:
|
||||
- file: /etc/apt/sources.list.d/gpodder.list
|
||||
- keyid: 89617F48
|
||||
- keyserver: keyserver.ubuntu.com
|
||||
{% endif %}
|
||||
|
||||
nginx-ppa:
|
||||
pkgrepo.managed:
|
||||
- ppa: nginx/development
|
||||
|
||||
{% set osrelease = salt['grains.get']('osrelease', '12.04') %}
|
||||
|
||||
pkgrepo-deps:
|
||||
pkg.installed:
|
||||
- pkgs:
|
||||
- python-apt
|
||||
- python-software-properties
|
||||
- require_in:
|
||||
{%- if codename != 'vivid' %}
|
||||
- pkgrepo: gpodder-ppa
|
||||
{%- endif %}
|
||||
- pkgrepo: nginx-ppa
|
||||
# END Ubuntu pkgrepo tests
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user