Commit f895b4b0 authored by James T. Lee's avatar James T. Lee
Browse files

plymouth: Fix vconsole setup bug

parent c48bf7e4
...@@ -21,6 +21,15 @@ class nest::profile::base::plymouth { ...@@ -21,6 +21,15 @@ class nest::profile::base::plymouth {
ensure => installed, ensure => installed,
} }
# Plymouth tries to start systemd-vconsole-setup before the console is ready,
# resulting in I/O error when trying to start the service.
file_line { 'plymouth-start.service-Wants':
path => '/lib/systemd/system/plymouth-start.service',
line => 'Wants=systemd-ask-password-plymouth.path',
match => '^Wants=',
require => Package['sys-boot/plymouth'],
}
$plymouthd_conf_contents = @(PLYMOUTH_CONF) $plymouthd_conf_contents = @(PLYMOUTH_CONF)
[Daemon] [Daemon]
Theme=details Theme=details
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment