From daef1c44767c7f32525c7c785c3070589e5ebe4a Mon Sep 17 00:00:00 2001 From: Thomas Bellman <bellman@lysator.liu.se> Date: Thu, 20 Oct 2022 15:08:49 +0200 Subject: [PATCH] Fix a broken dependency. The code in this Puppet module is partly based on some manifests I had written earlier. The original code had slightly different names for some definitions and classes, and when I rewrote that to form this module, I apparently copy-pasted one line too much without noticing that it was referencing an old name. Fix this. --- manifests/keymap/default.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/keymap/default.pp b/manifests/keymap/default.pp index 3d696f1..3dd6a35 100644 --- a/manifests/keymap/default.pp +++ b/manifests/keymap/default.pp @@ -51,7 +51,7 @@ class console::keymap::default( command => 'dracut -f', path => ['/sbin', '/bin', '/usr/bin'], refreshonly => true, - subscribe => Console::Keymap_file[$keymap]; + subscribe => Console::Keymap::Mapfile[$keymap]; } # We also need to ascertain that vconsole.keymap is not passed # to the kernel, since that overrides /etc/vconsole.conf. -- GitLab