Skip to content

Commit dc94f7e

Browse files
authored
ansible: update debian8 support (#1942)
1 parent 7b9805a commit dc94f7e

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

ansible/roles/baselayout/tasks/partials/repo/debian8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22

3-
- name: "debian8 | add debian-backports" # has systemd-coredump if needed
3+
- name: "debian8 | add jessie-backports" # has systemd-coredump if needed
44
apt_repository:
5-
repo: 'deb http://ftp.debian.org/debian jessie-backports main'
5+
repo: 'deb http://archive.debian.org/debian jessie-backports main'
66
state: present
77
update_cache: yes
88
register: has_updated_package_repo

ansible/roles/bootstrap/tasks/partials/debian8.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,12 @@
1212
- name: install apt-transport-https
1313
when: has_apt_transport.rc == 1
1414
raw: apt-get install -y apt-transport-https
15+
16+
- name: install dbus
17+
package: name=dbus state=present
18+
19+
- name: disable valid-until apt checks
20+
lineinfile:
21+
dest: /etc/apt/apt.conf.d/99no-check-valid-until
22+
line: 'Acquire::Check-Valid-Until no;'
23+
create: yes

0 commit comments

Comments
 (0)