diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-01-12 22:12:07 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-01-12 22:15:28 +0000 |
commit | ff93539eb42bf9f7cc4ac701f3d0afe62141f397 (patch) | |
tree | 023a72376b19af1bbca499ca8b0cae6f9a9d3ecf /examples/minimal | |
parent | d0bc05b2885c064d0ef0ed531167933c4bd6df60 (diff) | |
download | drakiso-ff93539eb42bf9f7cc4ac701f3d0afe62141f397.tar drakiso-ff93539eb42bf9f7cc4ac701f3d0afe62141f397.tar.gz drakiso-ff93539eb42bf9f7cc4ac701f3d0afe62141f397.tar.bz2 drakiso-ff93539eb42bf9f7cc4ac701f3d0afe62141f397.tar.xz drakiso-ff93539eb42bf9f7cc4ac701f3d0afe62141f397.zip |
examples: backport a couple of fixes from the official ISOs.
Diffstat (limited to 'examples/minimal')
-rw-r--r-- | examples/minimal/config/build.cfg | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/minimal/config/build.cfg b/examples/minimal/config/build.cfg index d7fa2e2..0627bd6 100644 --- a/examples/minimal/config/build.cfg +++ b/examples/minimal/config/build.cfg @@ -130,6 +130,11 @@ my $config = { # Enable the set-lang-kbd service. "systemctl enable set-lang-kbd.service", + # The man-db transfiletriggerin scriplet requires systemd, so will + # have silently failed when run in a chroot. So the man-db cache + # will not have been updated. Do it now. + "mandb -q", + # 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", |