From 2a03f5f98df810b0ff00f413fac9eb4b0d4b9f36 Mon Sep 17 00:00:00 2001 From: JORGE SASIAIN <jorge.sasiain@ehu.eus> Date: Mon, 5 Dec 2022 11:52:12 +0000 Subject: [PATCH] Fix "Update apt cache" handler. As "update apt cache", it did not match the handler name ("Update apt cache"). The first ansible run failed (https://devops.stackexchange.com/questions/4365/ansible-handler-not-found-on-first-attempt) --- roles/containerlab/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/containerlab/tasks/main.yml b/roles/containerlab/tasks/main.yml index 4d301b5..43ef0e4 100644 --- a/roles/containerlab/tasks/main.yml +++ b/roles/containerlab/tasks/main.yml @@ -4,7 +4,7 @@ state: present filename: netdevops notify: - - update apt cache + - Update apt cache - name: Install Packages ansible.builtin.apt: -- GitLab