Fix script execution in the local service
The local service should use eval when it executes scripts since it has the redirection set up in a variable. This fixes #50. X-Gentoo-Bug: 545012 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=545012
This commit is contained in:
		| @@ -20,7 +20,7 @@ start() | ||||
| 	for file in @SYSCONFDIR@/local.d/*.start; do | ||||
| 		if [ -x "${file}" ]; then | ||||
| 			vebegin "Executing \"${file}\"" | ||||
| 			"${file}" $redirect | ||||
| 			eval "${file}" $redirect | ||||
| 			retval=$? | ||||
| 			if [ ${retval} -ne 0 ]; then | ||||
| 				has_errors=1 | ||||
| @@ -59,7 +59,7 @@ stop() | ||||
| 	for file in @SYSCONFDIR@/local.d/*.stop; do | ||||
| 		if [ -x "${file}" ]; then | ||||
| 			vebegin "Executing \"${file}\"" | ||||
| 			"${file}" $redirect | ||||
| 			eval "${file}" $redirect | ||||
| 			retval=$? | ||||
| 			if [ ${retval} -ne 0 ]; then | ||||
| 				has_errors=1 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user