Skip to content

Commit 776c4e6

Browse files
author
Olivier Locard
authored
Merge pull request Deveryware#6 from Aversiste/remove-wheezy
Wheezy is not supported anymore
2 parents 1a8b278 + 0301a6c commit 776c4e6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

meta/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ galaxy_info:
1313
- name: CentOS
1414
- name: Debian
1515
versions:
16-
- wheezy
1716
- jessie
1817
- name: Alpine
1918
categories:

tasks/install.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
mode: "0644"
2222
when: ansible_pkg_mgr == "yum" and epel_repo_check is defined and epel_repo_check.rc != 0
2323

24-
- name: Add haproxy apt repo (wheezy/jessie)
24+
- name: Add haproxy apt repo (jessie)
2525
apt_repository:
2626
repo: deb http://http.debian.net/debian {{ ansible_distribution_release }}-backports main
2727
state: present
2828
update_cache: yes
29-
when: ansible_distribution_release == 'wheezy' or ansible_distribution_release == 'jessie'
29+
when: ansible_distribution_release == 'jessie'
3030

3131
- name: 'Add haproxy apt repo (Ubuntu)'
3232
apt_repository:
@@ -40,11 +40,11 @@
4040
name: "{{ haproxy_package_name }}"
4141
when: ansible_pkg_mgr == "yum"
4242

43-
- name: Install HAProxy (apt wheezy/jessie)
43+
- name: Install HAProxy (apt jessie)
4444
apt:
4545
name: "{{ haproxy_package_name }}"
4646
default_release: "{{ansible_distribution_release}}-backports"
47-
when: ansible_distribution_release == 'wheezy' or ansible_distribution_release == 'jessie'
47+
when: ansible_distribution_release == 'jessie'
4848

4949
- name: Install HAProxy (Ubuntu)
5050
package:

0 commit comments

Comments
 (0)