diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-02-24 18:22:22 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-02-24 18:22:22 +0000 |
commit | 6aedf724114e18c1f68e50cab295475145faf837 (patch) | |
tree | 6899a31a0ba81b8d005e0207da6c6a30d3934d52 /tools/draklive | |
parent | c692427ebf339599477885dd65044a2863e737e6 (diff) | |
download | drakx-6aedf724114e18c1f68e50cab295475145faf837.tar drakx-6aedf724114e18c1f68e50cab295475145faf837.tar.gz drakx-6aedf724114e18c1f68e50cab295475145faf837.tar.bz2 drakx-6aedf724114e18c1f68e50cab295475145faf837.tar.xz drakx-6aedf724114e18c1f68e50cab295475145faf837.zip |
remove /etc/modprobe.conf and /etc/modprobe.preload build-machine specific stuff
Diffstat (limited to 'tools/draklive')
-rwxr-xr-x | tools/draklive | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/draklive b/tools/draklive index 3fa422907..95f25fc05 100755 --- a/tools/draklive +++ b/tools/draklive @@ -484,8 +484,9 @@ sub post_install_system { #- (don't use addVarsInSh from MDK::Common, it breaks shell escapes) substInFile { s/^PROMPT=.*/PROMPT=no/ } get_system_root($live) . '/etc/sysconfig/init'; - #- make sure mtab and fstab don't contain build-machine specific configuration - output(get_system_root($live) . $_, '') foreach qw(/etc/fstab /etc/mtab); + #- remove some build-machine specific configuration + output(get_system_root($live) . $_, '') foreach qw(/etc/fstab /etc/mtab /etc/modprobe.conf); + substInFile { undef $_ if /^[^#]/ } get_system_root($live) . '/etc/modprobe.preload'; #- disable first boot wizard output(get_system_root($live) . '/etc/sysconfig/firstboot', 'FIRSTBOOT=no'); |