diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-10-30 21:25:42 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-11-02 21:37:31 +0000 |
commit | 98da63efe4abc1a93256b46663c092285133f316 (patch) | |
tree | 96787c531c4d363e0cdf33f801f1e325c5c4b339 | |
parent | 594750e4c5839652e07279c1b04d3afe9eb9e00d (diff) | |
download | drakiso-98da63efe4abc1a93256b46663c092285133f316.tar drakiso-98da63efe4abc1a93256b46663c092285133f316.tar.gz drakiso-98da63efe4abc1a93256b46663c092285133f316.tar.bz2 drakiso-98da63efe4abc1a93256b46663c092285133f316.tar.xz drakiso-98da63efe4abc1a93256b46663c092285133f316.zip |
minimal example: we now need to explicitly enable login on tty1.
-rw-r--r-- | examples/minimal/config/build.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/minimal/config/build.cfg b/examples/minimal/config/build.cfg index 5b1ccdc..7e7780d 100644 --- a/examples/minimal/config/build.cfg +++ b/examples/minimal/config/build.cfg @@ -130,6 +130,9 @@ my $config = { # Enable the set-lang-kbd service. "systemctl enable set-lang-kbd.service", + # Enable login on tty1 + 'systemctl enable getty@tty1.service', + # Set the initial wireless regulatory domain to "world", enabling # all possible wireless channels to be used. "sed -i -r 's/CRDA_DOMAIN=.*/CRDA_DOMAIN=00/' /etc/sysconfig/network", |