First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 6645
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Linux bug wranglers <bug-wranglers@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: burzmali <burzmali@burzmali.net>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 6645 depends on: Show dependency tree
Show dependency graph
Bug 6645 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)







View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2002-08-17 13:05 0000
in the setiathome /etc/init.d/ script there is a bug that prevents it from 
running  
correctly for the first time.  
checkconfig() {  
	if [ ! -e ${SETIATHOME_DIR} ]  
	then  
		einfo "Creating ${SETIATHOME_DIR}"  
		mkdir ${SETIATHOME_DIR}  
	fi  
  
	if [ ! -e ${SETIATHOME_DIR}/user_info.sah ]  
	then  
		einfo "Setting up SETI@home for the first time"  
		cd ${SETIATHOME_DIR}  
		setiathome -login  
	fi  
}  
  
should be:  
checkconfig() {  
	if [ ! -e ${SETIATHOME_DIR} ]  
	then  
		einfo "Creating ${SETIATHOME_DIR}"  
		mkdir ${SETIATHOME_DIR}  
	fi  
  
	if [ ! -e ${SETIATHOME_DIR}/user_info.sah ]  
	then  
		einfo "Setting up SETI@home for the first time"  
		cd ${SETIATHOME_DIR}  
		./setiathome -login  
	fi  
}  
  
notice the './' before 'setiathome -login'  
  
that is all, pretty minor, but worth fixing i guess.  
(and yes, i know it is masked)

------- Comment #1 From Ryan Phillips (RETIRED) 2002-08-18 22:16:34 0000 -------
thx... committed

First Last Prev Next    No search results available      Search page      Enter new bug