#
99342bd4 |
| 11-Jan-2018 |
rpe <rpe@openbsd.org> |
- change [] tests to [[]] - change -a, -o to &&, || inside [[]] - remove unecessary quoting inside [[]] - remove X"" constructs inside [[]] - remove \ (line continuation) in case of &&, || and pipes
- change [] tests to [[]] - change -a, -o to &&, || inside [[]] - remove unecessary quoting inside [[]] - remove X"" constructs inside [[]] - remove \ (line continuation) in case of &&, || and pipes - replace backticks with $()
discussed with and OK aja@ OK tb
show more ...
|
#
9b592919 |
| 11-Jan-2018 |
rpe <rpe@openbsd.org> |
Change the shebang line from /bin/sh to /bin/ksh in all base rc.d daemon scripts.
discussed with and OK aja@ OK tb
|
#
e680fa4e |
| 19-Sep-2011 |
ajacoutot <ajacoutot@openbsd.org> |
Set defaults daemon_flags (same as advertised in rc.conf.local(5) so that we can use these scripts right away with /etc/rc.d/XXX -f without having to manually set _flags.
ok robert@
|
#
ac826d78 |
| 08-Jul-2011 |
robert <robert@openbsd.org> |
Switch amd and spamlogd to rc scripts and make sure that the rc_pre() functions are returning correctly. This change also simplyfies the changes because false || return 1 can be replaced with false i
Switch amd and spamlogd to rc scripts and make sure that the rc_pre() functions are returning correctly. This change also simplyfies the changes because false || return 1 can be replaced with false if that's the last call. thanks halex@!
show more ...
|
#
833ea469 |
| 06-Jul-2011 |
robert <robert@openbsd.org> |
Add rc.d(8) script for the system daemons that are restartable. From now on rc(8) is going to call these scripts to start them up on boot in the same order than before. In addition the inetd and rwho
Add rc.d(8) script for the system daemons that are restartable. From now on rc(8) is going to call these scripts to start them up on boot in the same order than before. In addition the inetd and rwhod variables in rc.conf are deprecated so that inetd_flags and rwhod_flags should be used. The old flags are still going to be used for some time to allow users to switch. There are more rc modifications to come later so let's put this in so we can base more work on this. It is important to mention that you can still keep using rc.local just like the way you did before, and we have no intention to remove that either.
I'd also like to thank ajacoutot@, halex@, sthen@ and schwarze@ for working on this with me.
show more ...
|