summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2008-06-20 11:55:56 -0400
committerBill Nottingham <notting@redhat.com>2008-06-20 11:55:56 -0400
commit6f169f97b991fef106063d926af0883d427a8975 (patch)
tree3ee5bb14b0494866f722d72246cb58eee5bbd1d7
parent3b9c520b29c517f876636acfdc89595c5ce8dd3c (diff)
downloadinitscripts-6f169f97b991fef106063d926af0883d427a8975.tar.gz
initscripts-6f169f97b991fef106063d926af0883d427a8975.tar.xz
initscripts-6f169f97b991fef106063d926af0883d427a8975.zip
Fix /dev/pts mountinitscripts-8.78-1
-rw-r--r--initscripts.spec6
-rwxr-xr-xrc.d/rc.sysinit3
2 files changed, 8 insertions, 1 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 9aa76a35..3ca2e75b 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -2,7 +2,7 @@
Summary: The inittab file and the /etc/init.d scripts
Name: initscripts
-Version: 8.77
+Version: 8.78
# ppp-watch is GPLv2+, everything else is GPLv2
License: GPLv2 and GPLv2+
Group: System Environment/Base
@@ -238,6 +238,9 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Fri Jun 20 2008 Bill Nottingham <notting@redhat.com> - 8.78-1
+- fix mounting of /dev/pts
+
* Thu Jun 19 2008 Bill Nottingham <notting@redhat.com> - 8.77-1
- NMDispatcher/05-netfs: fix check for default route (#445509)
- service: don't set $LANG, rely on it to inherit from system locales (#422141)
@@ -251,6 +254,7 @@ rm -rf $RPM_BUILD_ROOT
- console_init: support SYSFONTACM correctly, and support UNIMAP (#448704,
<vvv+fedora@colocall.net>)
- don't export GRAPHICAL - plymouth is for all modes. also, don't start rhgb
+- fix clock rules to properly handle old-style RTC devices (#447019)
- translation updates: ko, or, pl
* Fri May 2 2008 Bill Nottingham <notting@redhat.com> - 8.76-1
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 7dcf5c39..9637b8ab 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -301,6 +301,9 @@ if [ -f /etc/rc.modules ]; then
/etc/rc.modules
fi
+mount -n /dev/pts >/dev/null 2>&1
+[ -n "$SELINUX_STATE" ] && restorecon /dev/pts >/dev/null 2>&1
+
# Configure kernel parameters
update_boot_stage RCkernelparam
sysctl -e -p /etc/sysctl.conf >/dev/null 2>&1