aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPreston Brown <pbrown@redhat.com>1998-10-12 15:30:54 +0000
committerPreston Brown <pbrown@redhat.com>1998-10-12 15:30:54 +0000
commit2d21d78c1ad660a52be2f22bbb0bc15094c87a3b (patch)
treea0e664ea2a0753b13e98c65b4260d203a27391c1
parent9a2a42d8ace009faef68a50f5de85c8a9a4af7ea (diff)
downloadinitscripts-r3-75.tar
initscripts-r3-75.tar.gz
initscripts-r3-75.tar.bz2
initscripts-r3-75.tar.xz
initscripts-r3-75.zip
updated so that setfont always runs.r3-75
-rw-r--r--initscripts.spec5
-rwxr-xr-xsetsysfont2
2 files changed, 6 insertions, 1 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 88d5817b..14cf893c 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: inittab and /etc/rc.d scripts
Name: initscripts
-%define version 3.74
+%define version 3.75
Version: %{version}
Copyright: GPL
Group: Base
@@ -155,6 +155,9 @@ rm -rf $RPM_BUILD_ROOT
%doc sysconfig.txt
%changelog
+* Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
+- adjusted setsysfont to always run setfont, even if only w/default font
+
* Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
- rc.sysvinit should be working with all kernel versions now
- requires e2fsprogs (for fsck)
diff --git a/setsysfont b/setsysfont
index f19914d7..1105a087 100755
--- a/setsysfont
+++ b/setsysfont
@@ -10,6 +10,8 @@ if [ -x /usr/bin/setfont ]; then
/usr/bin/setfont $SYSFONT -u $UNIMAP
elif [ -n "$SYSFONT" ]; then
/usr/bin/setfont $SYSFONT
+ else
+ /usr/bin/setfont
fi
else