diff options
author | Preston Brown <pbrown@redhat.com> | 1998-10-12 15:30:54 +0000 |
---|---|---|
committer | Preston Brown <pbrown@redhat.com> | 1998-10-12 15:30:54 +0000 |
commit | 2d21d78c1ad660a52be2f22bbb0bc15094c87a3b (patch) | |
tree | a0e664ea2a0753b13e98c65b4260d203a27391c1 | |
parent | 9a2a42d8ace009faef68a50f5de85c8a9a4af7ea (diff) | |
download | initscripts-2d21d78c1ad660a52be2f22bbb0bc15094c87a3b.tar initscripts-2d21d78c1ad660a52be2f22bbb0bc15094c87a3b.tar.gz initscripts-2d21d78c1ad660a52be2f22bbb0bc15094c87a3b.tar.bz2 initscripts-2d21d78c1ad660a52be2f22bbb0bc15094c87a3b.tar.xz initscripts-2d21d78c1ad660a52be2f22bbb0bc15094c87a3b.zip |
updated so that setfont always runs.r3-75
-rw-r--r-- | initscripts.spec | 5 | ||||
-rwxr-xr-x | setsysfont | 2 |
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) @@ -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 |