diff options
author | Bill Nottingham <notting@redhat.com> | 2005-04-15 20:12:17 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-04-15 20:12:17 +0000 |
commit | 1b89d29f57a7860737465e6a07490bf293d4c7cc (patch) | |
tree | dcf6493881284db0837381d6c3391f71af0236a4 /rc.d/rc.sysinit | |
parent | 621984f5bce23692028dcb57b5dc6cce5b2f1272 (diff) | |
download | initscripts-1b89d29f57a7860737465e6a07490bf293d4c7cc.tar initscripts-1b89d29f57a7860737465e6a07490bf293d4c7cc.tar.gz initscripts-1b89d29f57a7860737465e6a07490bf293d4c7cc.tar.bz2 initscripts-1b89d29f57a7860737465e6a07490bf293d4c7cc.tar.xz initscripts-1b89d29f57a7860737465e6a07490bf293d4c7cc.zip |
load user-defined module scripts from /etc/sysconfig/modules at boot
(#123927)
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 29e3f2e6..7d81ace2 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -215,6 +215,16 @@ echo -n $" done" success echo +# Load other user-defined modules +for file in /etc/sysconfig/modules/*.modules ; do + [ -x $file ] && $file +done + +# Load modules (for backward compatibility with VARs) +if [ -f /etc/rc.modules ]; then + /etc/rc.modules +fi + # Start the graphical boot, if necessary; /usr may not be mounted yet, so we # may have to do this again after mounting RHGB_STARTED=0 @@ -487,10 +497,6 @@ if [ -n "$SELINUX" -a strstr "$cmdline" autorelabel ]; then relabel_selinux fi -# Load modules (for backward compatibility with VARs) -if [ -f /etc/rc.modules ]; then - /etc/rc.modules -fi # Start the graphical boot, if necessary and not done yet. if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then |