Skip to content

Commit

Permalink
Merge pull request #31 from inverse-inc/feature/use-ifupdown
Browse files Browse the repository at this point in the history
Feature/use ifupdown
  • Loading branch information
nqb authored Sep 16, 2020
2 parents 3e85c42 + a4e7388 commit fba50a0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Only manage DB and configuration when configurator is disabled
- Manage network using ifupdown on Debian hosts

## [1.0.3] - 2020-07-21

Expand Down
2 changes: 1 addition & 1 deletion packetfence/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace: "inverse_inc"
name: "packetfence"
version: "1.1.0-1"
version: "1.1.0-2"
description: "Collections of Ansible roles to manage PacketFence installations."

authors:
Expand Down
12 changes: 12 additions & 0 deletions packetfence/roles/packetfence_common/tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@
state: present
update_cache: yes

- name: ensure systemd-networkd is installed
stat:
path: /lib/systemd/system/systemd-networkd.service
register: packetfence_common__register_deb_systemd_networkd

- name: ensure systemd-networkd is disabled to manage network with ifupdown
service:
name: systemd-networkd
state: stopped
enabled: no
when: packetfence_common__register_deb_systemd_networkd.stat.exists

- name: ensure systemd-resolved is installed
stat:
path: /lib/systemd/system/systemd-resolved.service
Expand Down

0 comments on commit fba50a0

Please sign in to comment.