View | Details | Raw Unified | Return to bug 35561
Collapse All | Expand All

(-)a/management/univention-join/univention-run-join-scripts (-1 / +3 lines)
 Lines 220-225   echo Link Here 
220
echo "univention-run-join-scripts started"
220
echo "univention-run-join-scripts started"
221
date
221
date
222
echo
222
echo
223
EXITCODE=0
223
if [ -e "/usr/lib/univention-install/" ]
224
if [ -e "/usr/lib/univention-install/" ]
224
then
225
then
225
	for i in "${SCRIPTS[@]}"
226
	for i in "${SCRIPTS[@]}"
 Lines 247-252   then Link Here 
247
		RET=$?
248
		RET=$?
248
		echo "EXITCODE=$RET"
249
		echo "EXITCODE=$RET"
249
		if [ $RET != 0 ]; then
250
		if [ $RET != 0 ]; then
251
			EXITCODE=1
250
			echo -e "\033[60Gfailed (exitcode: $RET)" >&3
252
			echo -e "\033[60Gfailed (exitcode: $RET)" >&3
251
		else
253
		else
252
			echo -e "\033[60Gdone" >&3
254
			echo -e "\033[60Gdone" >&3
 Lines 260-263   date Link Here 
260
echo "univention-run-join-scripts finished"
262
echo "univention-run-join-scripts finished"
261
echo
263
echo
262
264
263
exit 0
265
exit $EXITCODE

Return to bug 35561