Bug 166113

Summary: setsysfont uses wrong variable name
Product: [Fedora] Fedora Reporter: Ulrich Drepper <drepper>
Component: initscriptsAssignee: Bill Nottingham <notting>
Status: CLOSED DUPLICATE QA Contact: Brock Organ <borgan>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-08-19 07:05:39 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Ulrich Drepper 2005-08-17 00:10:55 UTC
Description of problem:
In the setsysfont script there are currently the following lines:

  if [ -n "$SYSFONTACM" ]; then
    if [ ! -f /lib/kbd/consoletrans/$SYSFONTACM_to_uni.trans ]; then

The second line looks suspicious.  There is no variable SYSFONTACM_to_uni. 
Looking at the content of /lib/kbd/consoletrans I suspect this should be

  if [ ! -f /lib/kbd/consoletrans/${SYSFONTACM}_to_uni.trans ]; then


Version-Release number of selected component (if applicable):
initscripts-8.11.1-1

Comment 1 Bill Nottingham 2005-08-19 07:05:39 UTC
Whoops, I need to get that built at some point.

*** This bug has been marked as a duplicate of 159706 ***