Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/use ifupdown #31

Merged
merged 2 commits into from
Sep 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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