Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-23 | Clarify how to handle restart processing | William Hubbs | |
The Gentoo developer manual covers how to handle restarts in init scripts, but this was not officially covered in OpenRc's Documentation. This commit adds an example to the runscript man page that shows how this works. | |||
2012-09-22 | Add restart_pre/restart_post support, also document RC_CMD | Christian Ruppert | |
2012-09-09 | add RC_PREFIX environment variable | William Hubbs | |
This will be used by init scripts which want to be able to run in a Gentoo Prefix installation. RC_PREFIX will contain the prefix offset. | |||
2012-07-26 | Bring Back prefix support | William Hubbs | |
We now have a team member who is interested in OpenRC on prefix, so I am bringing it back to the main tree. | |||
2012-03-24 | Document the required_dirs and required_files variables | William Hubbs | |
2012-03-03 | Runscript: allow extra_commands to be run in chroots | William Hubbs | |
The commands defined in the extra_commands variable do not depend on whether the service is stopped or started, so it is valid to run them in chroot environments. Also, add a note to the runscript man page about the commands in extra_commands being able to run whether or not the service is started. Reported-by: Robin Johnson <robbat2@gentoo.org> X-Gentoo-Bug: 406713 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=406713 | |||
2012-02-21 | Remove prefix support | William Hubbs | |
I spoke with the prefix team sometime back and was told that they do not have an interest in using OpenRC on prefix systems. | |||
2012-02-19 | Clarify the documentation about the reboot runlevel | William Hubbs | |
The reboot runlevel does exist, but it gets remapped to the shutdown runlevel internally. | |||
2012-02-19 | Document the RC_REBOOT variable | William Hubbs | |
2012-01-26 | Add -W/--writable function to checkpath | Christian Ruppert | |
Checkpath -W will use access(3p) to determine whether or not a path is writable. This is more accurate than test(1p) because it also takes into account whether or not the filesystem is mounted read-only. Modified by William Hubbs to add the man page update. | |||
2012-01-22 | Whitespace | Christian Ruppert | |
2012-01-17 | Use the "--make-pidfile" when command_background is used | Christian Ruppert | |
The start-stop-daemon "--make-pidfile" option is now used by default when using command_background, this requires a pidfile to be specified. Document command_background option. Reported-by: Giampaolo Tomassoni <giampaolo@tomassoni.biz> X-Gentoo-Bug: 399165 X-Gentoo-Bug-URL: https://bugs.gentoo.org/399165 | |||
2012-01-15 | Add "ifstopped" command to runscript | Christian Ruppert | |
Signed-off-by: Christian Ruppert <idl0r@gentoo.org> | |||
2012-01-09 | rc/checkpath: tmpfiles.d backend creation code | Robin H. Johnson | |
This commit provides the checkpath applet with feature parity to systemd's tmpfiles.c create_item function. Very similarly to the systemd function, it does NOT do any of the cleanup work in this function. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> | |||
2011-12-30 | Reword retry documentation on runscript man page | William Hubbs | |
2011-12-31 | Add "retry" option for the stop() template | Christian Ruppert | |
2011-12-30 | Documentation updates | William Hubbs | |
- Clarify that start_stop_daemon_args is only used when starting a daemon. - fix several typos. | |||
2011-12-30 | Document start_stop_daemon_args | Christian Ruppert | |
2011-12-11 | Allow init scripts to be executed with a relative path | William Hubbs | |
This was a regression that was caused by the fix for http://bugs.gentoo.org/show_bug.cgi?id=350910. I am reverting the commit that we said fixed that bug and re-opening it. Reported-By: Nathaniel <nathaniel@paust.us X-Gentoo-Bug: 392457 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=392457 | |||
2011-11-19 | make shell math operations style more succulent | Mike Frysinger | |
Convert the style: var=$((${var} + 1)) to: : $(( var += 1 )) The latter is easier to read imo. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2011-11-16 | add support for extra_stopped_commands | William Hubbs | |
2011-07-31 | Improve processing of service directories and conf.d files | William Hubbs | |
symbolic links should not be followed in an attempt to work out the name of the service we are running. Also, @sysconfdir@/conf.d should be tried as a backup directory for configuration files. I would like to thank Robin Johnson for his input on this change. X-Gentoo-Bug: 350910 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=350910 | |||
2011-06-29 | drop useless "All rights reserved" notice | Mike Frysinger | |
Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2011-04-08 | clarify documentation for -timeout keyword | William Hubbs | |
2011-01-05 | Update manpage for mention of rc_sys purpose. | Robin H. Johnson | |
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> | |||
2010-01-08 | random spelling fixes | Mike Frysinger | |
Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2009-11-04 | Add support for Linux Containers, fixes #202. | Roy Marples | |
Patch by bug reporter. | |||
2009-07-01 | We should use -feature instead of nofeature. | Roy Marples | |
This matches the ifconfig and Gentoo USE flag syntax and is hopefully easier to read. Fixes #178. | |||
2009-05-01 | Add (c) to Copyright | Roy Marples | |
2009-04-30 | Add -Z, --dry-run option to show which services we would start/stop | Roy Marples | |
without actually doing so. Fixes #151. | |||
2009-04-27 | Add the noshutdown keyword to special case the shutdown. | Roy Marples | |
2009-04-26 | Add the nostop keyword so that we don't stop the network init script by default. | Roy Marples | |
2008-12-30 | Typo. | Roy Marples | |
2008-11-04 | More Typos. | Roy Marples | |
2008-09-19 | Style. | Roy Marples | |
2008-09-19 | Document the limitation of symlinking services outside of the service ↵ | Roy Marples | |
directory, Gentoo #237263. | |||
2008-07-03 | Fix is_older_than a little better, and make is_newer_than correct. | Roy Marples | |
2008-06-03 | Add the ewaitfile function so init scripts can wait until sockts are ↵ | Roy Marples | |
created, Gentoo #175783. | |||
2008-03-19 | SVCNAME -> RC_SVCNAME, but export SVCNAME still for compat. | Roy Marples | |
2008-03-19 | Add rc-service and update all softlevel refs to runlevel. | Roy Marples | |
2008-03-04 | Document the negation of keywords. | Roy Marples | |
2008-03-03 | Split VPS into VSERVER and OPENVZ | Roy Marples | |
2008-02-22 | Welcome to 2008. | Roy Marples | |
2008-02-22 | Welcome to 2008. | Roy Marples | |
2008-02-19 | keywords -> keyword | Roy Marples | |
2008-02-19 | Move the shell code to check for RC_SYS to the keywords dependency. | Roy Marples | |
2008-02-19 | Add the nojail keyword which excludes services marked as such from the ↵ | Roy Marples | |
dependency tree when in a jail, #bug 22 | |||
2008-01-30 | Document how to remove dependencies in configuration files. | Roy Marples | |
2008-01-30 | Allow !net to remove the net provision from dependencies. | Roy Marples | |
2008-01-18 | Document yesno, is_older_than and is_newer_than. | Roy Marples | |