Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-21 | Convert OpenRC to a centralized copyright/license structure | William Hubbs | |
In the past, OpenRC was a hybrid of a centralized and file-scope license/copyright structure. I followed the instructions from the Software Freedom Law Center [1] to convert to a Centralized structure where possible, for easier future maintenance. [1] https://softwarefreedom.org/resources/2012/ManagingCopyrightInformation.html | |||
2013-11-30 | functions.sh: yesno: (mostly) fix eval logic | Mike Frysinger | |
We need to quote the expansion. X-Gentoo-Bug: 475032 X-Gentoo-Bug: https://bugs.gentoo.org/475032 Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2013-02-23 | include BINDIR and SBINDIR in the sanitized PATH | Andrew Gregory | |
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> | |||
2012-11-07 | checkbashisms: clean up export statements. | Robin H. Johnson | |
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> | |||
2012-10-17 | functions.sh: do not hard code path in e* wrapper functions | William Hubbs | |
We should use the "command" shell builtin to execute a binary from within the wrapper with the same name. Hard coding the path to the binary makes our test suite fail. | |||
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-07-02 | slight formatting change | William Hubbs | |
Add a new line after "rc_runlevel()" for consistency. | |||
2011-06-29 | drop useless "All rights reserved" notice | Mike Frysinger | |
Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2011-06-03 | fix underquoting of wrapped color stubs of exit status | Mike Frysinger | |
X-Gentoo-Bug: 369911 X-Gentoo-Bug-URL: http://bugs.gentoo.org/369911 Reported-by: Steve Dibb <beandog@gentoo.org> Reported-by: Christian Ruppert <idl0r@gentoo.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2009-05-23 | Move non compiled libraries from /lib/rc to /libexec/rc | Roy Marples | |
OpenRC version is now stored as plaintext in /libexec/rc/version Plugins (cursplash, splashutils) will have to be re-compiled to pickup the new directories. State data needs to be moved from /lib/rc/init.d to /libexec/rc/init.d as well. | |||
2009-05-05 | Fix compile on NetBSD | Roy Marples | |
2009-05-01 | Add (c) to Copyright | Roy Marples | |
2009-04-26 | Stop using needless {} in vars | Roy Marples | |
2009-04-19 | Use a bashism for a minor speedup in gendepends.sh | Roy Marples | |
2008-04-21 | Punt is_function in favour of POSIX shell builtin command, thanks to Harald ↵ | Roy Marples | |
van Dijk for the idea. | |||
2008-04-18 | We should check type output to ensure that we're really calling a shell ↵ | Roy Marples | |
function and not some badly named binary like stop from boinc, Gentoo #218063. | |||
2008-04-08 | Add a silly rc_runlevel function to appease SpanKY :) | Roy Marples | |
2008-03-27 | We would sanitize $RC_LIBDIR/sbin as well. If it's really needed then ↵ | Roy Marples | |
rc-functions.sh will add it back. | |||
2008-03-27 | Sanitize the write rc dir. | Roy Marples | |
2008-03-27 | Fix mulitlib issues. | Roy Marples | |
2008-03-24 | dont leak the _e var | Mike Frysinger | |
2008-03-21 | More pathing fixes. | Roy Marples | |
2008-03-20 | Fix pathing again. | Roy Marples | |
2008-03-19 | Ensure that our path includes packages and local | Roy Marples | |
2008-03-02 | Ensure that our scripts call prefixed runscript. | Roy Marples | |
2008-02-28 | Typo | Roy Marples | |
2008-02-28 | Support the use of PREFIX and PKG_PREFIX. | Roy Marples | |
2008-02-27 | Makefile SH variable now tweaks the default shell used by our scripts. | Roy Marples | |