From bd85d832546c3d88e1b5f9d37d0c8fb18b83c078 Mon Sep 17 00:00:00 2001 From: Markus Brechtel Date: Fri, 7 Jun 2019 18:47:37 +0200 Subject: [PATCH] network fix --- tasks/main.yaml | 2 ++ tasks/network.yaml | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 tasks/network.yaml diff --git a/tasks/main.yaml b/tasks/main.yaml index c6aa8d2..61a2e1c 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -16,6 +16,8 @@ - import_tasks: common.yaml - import_tasks: microcode.yaml +- import_tasks: network.yaml + - import_tasks: xfce.yaml - import_tasks: backgrounds.yaml - import_tasks: fonts.yaml diff --git a/tasks/network.yaml b/tasks/network.yaml new file mode 100644 index 0000000..3b4dac8 --- /dev/null +++ b/tasks/network.yaml @@ -0,0 +1,13 @@ +--- + +- name: network tools + apt: + pkg: + - network-manager + - resolvconf + +- name: link resolv.conf + file: + src: /etc/resolvconf/run/resolv.conf + dest: /etc/resolv.conf + state: link