Precreate /etc/modprobe.d in installroot
If /etc/modprobe.d/anaconda is found in the install env we
copy that into the chroot, which can fail if the modprobe.d/
directory doesn't exist. Just pre-create it.
---
yuminstall.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/yuminstall.py b/yuminstall.py
index 5629de0..9e1eaa3 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -1226,7 +1226,7 @@ class YumBackend(AnacondaBackend):
dirList = ['/var', '/var/lib', '/var/lib/rpm', '/tmp', '/dev', '/etc',
'/etc/sysconfig', '/etc/sysconfig/network-scripts',
'/etc/X11', '/root', '/var/tmp', '/etc/rpm', '/var/cache',
- '/var/cache/yum']
+ '/var/cache/yum', '/etc/modprobe.d']
# If there are any protected partitions we want to mount, create their
# mount points now.
--
1.5.3.7
--
Jesse Keating
Fedora -- All my bits are free, are yours?
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|