aboutsummaryrefslogtreecommitdiff
path: root/src/librc-misc.c
AgeCommit message (Collapse)Author
2007-12-06Move RC_ to EINFO_ for all env vars related to einfo.Roy Marples
2007-11-23Move /etc/conf.d/rc to /etc/rc.conf.Roy Marples
Lowercase all configurable variables, non configurations remain uppercase. Replace rc_env_bool with rc_yesno. Split localmount info procfs (Linux) and dumpon, savecore (BSD)
2007-11-14relicense as 2-clause BSD, with the kind permission of GentooRoy Marples
2007-10-12malloc over fatty buffersRoy Marples
2007-10-11malloc data size, not pointer sizeRoy Marples
2007-10-08Wups, should be xstrdupRoy Marples
2007-10-08Punt rc_ from xstrdup, xalloc, xrealloc and exists as they're not in librc ↵Roy Marples
anymore
2007-10-08Move rc_env_filter and rc_env_config out of librc and into rcRoy Marples
2007-10-05Punt rc_rm_dirRoy Marples
2007-10-05Punt rc_ls_dirRoy Marples
2007-10-04inline rc_xmalloc, rc_xrealloc and rc_xstrdup so that the library doesn't ↵Roy Marples
expose them.
2007-10-04LS_DIRS -> LS_DIRRoy Marples
2007-10-04Punt rc_exists from public interface, move to private static inlineRoy Marples
2007-10-04Punt rc_is_dirRoy Marples
2007-10-04punt rc_is_execRoy Marples
2007-10-04punt rc_is_linkRoy Marples
2007-10-04Punt rc_is_fileRoy Marples
2007-10-03rc_make_env -> rc_env_config, rc_filter_env -> rc_env_filterRoy Marples
2007-10-03Rename config funcsRoy Marples
2007-10-02rc_allow_plug -> rc_service_plugableRoy Marples
2007-09-29librc no longer uses libeinfo. deptree function names are now all under ↵Roy Marples
rc_deptree_
2007-09-26Fix rc_env_boolRoy Marples
2007-09-26rc_is_env is now rc_env_bool and just works with boolean values.Roy Marples
2007-09-25Revert last patchRoy Marples
2007-09-25We no longer use bool in our public headers, using int instead.Roy Marples
2007-09-25Initial doxygen documentation for rc.h and einfo.h. Plus some header clean ups.Roy Marples
2007-09-19Punt rc_xcalloc as nothing uses itRoy Marples
2007-09-18Hide errors caused by old splash plugin for the time beingRoy Marples
2007-09-18Don't be an ass - don't free the 2nd list. Instead just empty it.Roy Marples
2007-09-18Match the recent api change to rc_strlist_join also. We now free the 2nd ↵Roy Marples
list for ease of use.
2007-09-18API change! rc_config_env is renamed to rc_make_env and takes no argument.Roy Marples
2007-09-18API change! rc_ls_dir, rc_get_config and rc_get_list no longer takeRoy Marples
a starting list as a first argument. Instead, use rc_strlist_join to append or prepend the new list to an existing list.
2007-09-18API change! rc_strlist_add and friends now take char *** instead ofRoy Marples
char ** and return a pointer to the item added instead of the new list head. This is so we can easily tell if the item was successfully added or not instead of iterating through the list looking for it. list = rc_strlist_add (list, item); becomes rc_strlist_add (&list, item);
2007-08-28More path fixes thanks to Thomas PaniRoy Marples
2007-08-09Don't link to rt anymore as it makes dlopen leak - we now use nanosleeps to ↵Roy Marples
achieve the same goal (a loop + timeout). No longer put / at the end of directories, instead prefix like so RC_LIBDIR "/foo" to ensure more robust code.
2007-07-19Skip some files in env-update like portage env-update for more robustnessRoy Marples
2007-07-12Punt the RC_TTY variableRoy Marples
2007-07-09Add an option to fork ldconfig in env-update, #182794. Also, preserve the ↵Roy Marples
entire line in /etc/env.d/foo if it begins with $
2007-05-23RC_SYS should now set XEN0 correctlyRoy Marples
2007-05-15/etc/conf.d/rc.$runlevel now works, #177869.Roy Marples
2007-05-02SSD_NICELEVEL can now affect the nicelevel for daemons startedRoy Marples
by start-stop-daemon, #175397.
2007-04-24We now buffer stdout and stderr to a file and flush that when running in ↵Roy Marples
parallel. RC_PARALLEL_STARTUP has been renamed to RC_PARALLEL.
2007-04-19Fix fstabinfo -p /Roy Marples
2007-04-19strdup -> rc_xstrdupRoy Marples
2007-04-13kill off internal relocations for librc.soMike Frysinger
2007-04-11Cuddle up to LKML C styleRoy Marples
2007-04-10Fix indentationRoy Marples
2007-04-10Misc network fixes so we work on my stable server. Splash plugin removed as ↵Roy Marples
splashtuils-1.4 now ships with its own.
2007-04-08LIBDIR -> LIB. When interuppted, ensure service state is restored correctly. ↵Roy Marples
When stopping, don't uncoldplug too early.
2007-04-06snprintf is betterRoy Marples