Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/include/daemon.global.class.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2091 by niro, Mon May 13 07:06:33 2013 UTC revision 2115 by niro, Thu Jan 2 16:28:46 2014 UTC
# Line 226  verify_requirements() Line 226  verify_requirements()
226   # show missing and set the right retval   # show missing and set the right retval
227   if [[ -z ${missing} ]]   if [[ -z ${missing} ]]
228   then   then
229   rvecho "${sorted}"   # do not escape, or CRLFS get printed to screen too
230     rvecho ${sorted}
231   return 0   return 0
232   else   else
233   for req in ${sorted}   for req in ${sorted}
# Line 234  verify_requirements() Line 235  verify_requirements()
235   if no_duplicate "${missing}" "$req"   if no_duplicate "${missing}" "$req"
236   then   then
237   # print normal   # print normal
238   rvecho -n " ${req}"   rvecho -n "${req} "
239   else   else
240   # print missing   # print missing
241   eecho -n " ${req}"   eecho -n "${req} "
242   fi   fi
243   done   done
244     # print CRLF
245     echo
246   return 1   return 1
247   fi   fi
248  }  }

Legend:
Removed from v.2091  
changed lines
  Added in v.2115