Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 369411 - www-servers/mini_httpd - DO NOT USE EXIT IN INIT.D SCRIPTS * This IS a bug, please fix your broken init.d
Summary: www-servers/mini_httpd - DO NOT USE EXIT IN INIT.D SCRIPTS * This IS a bug, p...
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: AMD64 Linux
: Normal normal
Assignee: No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it
URL:
Whiteboard:
Keywords: PMASKED
Depends on:
Blocks:
 
Reported: 2011-05-31 00:34 UTC by nixscripter
Modified: 2012-04-23 18:26 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description nixscripter 2011-05-31 00:34:22 UTC
When I put a typo in the MINI_HTTPD_DOCROOT environment variable, it showed it had a badly written init script.

* Caching service dependencies ...                                        [ ok ]
* Starting mini_httpd ...
* MINI_HTTPD_DOCROOT not set correctly in /etc/conf.d/mini_httpd          [ !! ]
* DO NOT USE EXIT IN INIT.D SCRIPTS
* This IS a bug, please fix your broken init.d

There is an "exit 1" in the failure of this condition quite obviously. Taking it out I expect will solve it.

Reproducible: Always

Steps to Reproduce:
1. Set the MINI_HTTPD_DOCROOT variable to something that does not exist
2. /etc/init.d/mini_httpd start
Actual Results:  
Complained about the init script

Expected Results:  
Should abort cleanly.
Comment 1 Jeroen Roovers (RETIRED) gentoo-dev 2011-05-31 20:45:10 UTC
Are you arguing that the init.d script should sanitise that input? It already correctly bails out when MINI_HTTPD_DOCROOT is not a directory. Changing the Summary accordingly...
Comment 2 nixscripter 2011-06-01 01:22:35 UTC
I am saying, the script has an "exit 1" in it which should be removed:

start() {
	ebegin "Starting mini_httpd"
	if [ ! -d "$MINI_HTTPD_DOCROOT" ]; then
		eend 1 "MINI_HTTPD_DOCROOT not set correctly in /etc/conf.d/mini_httpd"
		exit 1 # < -- The message says delete this!
	fi
	start-stop-daemon --quiet --start --startas /usr/sbin/mini_httpd \
		--pidfile /var/run/mini_httpd.pid -- ${MINI_HTTPD_OPTS}
	eend $?
}

That is why I marked it as trivial.
Comment 3 Pacho Ramos gentoo-dev 2012-03-24 10:46:38 UTC
openrc team, how are we supposed to make init.d script die properly instead of using "exit 1"? Also, why is "exit 1" not allowed? Thanks for the info
Comment 4 William Hubbs gentoo-dev 2012-03-24 17:25:39 UTC
"exit 1" completely aborts the script, which means that the remaining
code in /lib/rc/sh/runscript.sh will not be executed; that is why you
shouldn't use it.

You should always use return instead of exit to exit your service
scripts.
Comment 5 Pacho Ramos gentoo-dev 2012-03-24 17:32:44 UTC
Fine, thanks
Comment 6 Pacho Ramos gentoo-dev 2012-04-23 18:26:32 UTC
dropped