diff options
author | Bill Nottingham <notting@redhat.com> | 2003-11-17 19:53:49 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-11-17 19:53:49 +0000 |
commit | e207ac1e12e22efa271884c5ab05eb4526bca8fc (patch) | |
tree | 5657975d6cb1959b74d6fca8dc2c69bef1c75705 /rc.d/rc.sysinit | |
parent | e538d8ccc33435abf569b8d587f04d6634354774 (diff) | |
download | initscripts-e207ac1e12e22efa271884c5ab05eb4526bca8fc.tar initscripts-e207ac1e12e22efa271884c5ab05eb4526bca8fc.tar.gz initscripts-e207ac1e12e22efa271884c5ab05eb4526bca8fc.tar.bz2 initscripts-e207ac1e12e22efa271884c5ab05eb4526bca8fc.tar.xz initscripts-e207ac1e12e22efa271884c5ab05eb4526bca8fc.zip |
fix devpts mounting (#110209)
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index fbeb0bed..f6814010 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -77,7 +77,7 @@ 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 -mount -n -t devpts /dev/pts /dev/pts +mount -n /dev/pts # Unmount the initrd, if necessary if LC_ALL=C fgrep -q /initrd /proc/mounts && ! LC_ALL=C fgrep -q /initrd/loopfs /proc/mounts ; then |