Bug 55458

Summary: Bug in startkde
Product: [Retired] Red Hat Linux Reporter: Derrien <derrien>
Component: kdebaseAssignee: Than Ngo <than>
Status: CLOSED CURRENTRELEASE QA Contact: Ben Levenson <benl>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.2   
Target Milestone: ---   
Target Release: ---   
Hardware: i686   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2004-09-20 13:45:08 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 Derrien 2001-10-31 16:59:20 UTC
From Bugzilla Helper:
User-Agent: Mozilla/4.78 [en] (X11; U; SunOS 5.7 sun4u)

Description of problem:
Line 54 and 58

# create necessary directories/files
if [ ! -d "$HOME"/Desktop -a -d /etc/skel/Desktop ]; then
  tar cpf - -C /etc/skel Desktop | tar xfp -C "$HOME" -
fi

if [ ! -d "$HOME"/.kde -a -d /etc/skel/.kde ]; then
  tar cpf - -C /etc/skel .kde |tar xfp -C "$HOME" -
fi

tar cpf - -C /etc/skel Desktop | tar xfp -C "$HOME" - give :
tar: -C: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now

It seams it should be :
tar cpf - -C /etc/skel Desktop | tar xfp - -C "$HOME"


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


How reproducible:
Always

Steps to Reproduce:
1rm $HOME/Desktop
2.execute startkde
3.
	

Additional info:

Comment 1 Than Ngo 2004-09-20 13:45:08 UTC
Please verify this with a newer version of Red Hat Enterprise Linux or
Fedora Core and reopen it against the new version if it still occurs.

Closing as "CURRENTRELEASE" for now.