Bug 24734

Summary: reconfig errors on startup
Product: [Retired] Red Hat Linux Reporter: josip
Component: anacondaAssignee: Michael Fulbright <msf>
Status: CLOSED WONTFIX QA Contact: Brock Organ <borgan>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.0   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2001-01-24 20:34:57 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 josip 2001-01-23 19:52:45 UTC
Package anaconda-7.0.1-6 owns file /etc/rc.d/init.d/reconfig which attempts
to source /etc/sysconfig/i18n which does not exist.  I'm guessing that this
filename should have 'init' instead of 'i18n'.

Suggestion: fix this typo.

Comment 1 Michael Fulbright 2001-01-24 20:34:53 UTC
That is the correct filename.  This file normally exists (it is created by the
install process).

If it is missing you can touch the file to suppress the warnings.

Comment 2 josip 2001-01-24 21:01:28 UTC
OK -- but it would be better if reconfig verified that 'i18n' exists before
attempting to source that file.  May I suggest

if [ -f /etc/sysconfig/i18n ]; then
  . /etc/sysconfig/i18n
fi

instead of just sourcing blindly?