Magellan Linux

Diff of /trunk/initscripts/sysvinit/rc/functions

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

trunk/magellan-initscripts/etc/rc.d/init.d/functions revision 1093 by niro, Wed Jul 14 13:07:30 2010 UTC trunk/initscripts/sysvinit/rc/functions revision 1356 by niro, Sat Jun 4 21:05:01 2011 UTC
# Line 47  svcmount="no" Line 47  svcmount="no"
47  svcfstype="tmpfs"  svcfstype="tmpfs"
48  svcsize=1024  svcsize=1024
49    
50    rc_echo() { echo $@; }
51    rc_print() { rc_echo -e "${COLOREDSTAR}$@"; }
52    
53  # dummy function; needed if splashutils are not installed  # dummy function; needed if splashutils are not installed
54  splash() { return 0; }  splash() { return 0; }
# Line 139  evaluate_retval() Line 141  evaluate_retval()
141   print_status success   print_status success
142   else   else
143   print_status failure   print_status failure
144    
145     if [[ ${SPLASH_VERBOSE_ON_ERRORS} = 1 ]]
146     then
147     splash "rc_verbose" "${runlevel}"
148     fi
149   fi   fi
150    
151   return ${error_value}   return ${error_value}
# Line 453  is_older_than() Line 460  is_older_than()
460    
461   return 1   return 1
462  }  }
463    
464    start_devicemanager() { touch /dev/.none; return 0; }
465    stop_devicemanager() { return 0; }

Legend:
Removed from v.1093  
changed lines
  Added in v.1356