diff options
author | Cat Lee Ball <43632885+catleeball@users.noreply.github.com> | 2022-03-04 23:30:36 -0800 |
---|---|---|
committer | Mike Frysinger <vapier@gmail.com> | 2022-03-05 13:14:21 -0500 |
commit | 7c2e7e6df496cfdc4377fb25b99779d99decb80a (patch) | |
tree | 386167d4c695f635e4560945136d3f03a3f7805a /service-script-guide.md | |
parent | 219a2319173037f84068e0addb111f1d147d04a3 (diff) |
Add newline for `want`
The comment block for `want` seemed to be unintentionally part of the `use` block. Added a newline so `want` will have its own section.
Diffstat (limited to 'service-script-guide.md')
-rw-r--r-- | service-script-guide.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/service-script-guide.md b/service-script-guide.md index dffb61c6..68ee7a68 100644 --- a/service-script-guide.md +++ b/service-script-guide.md @@ -80,7 +80,8 @@ depend() { `use` is a soft dependency - if dns, logger or netmount is in this runlevel start it before, but we don't care if it's not in this runlevel. - `want` is between need and use - try to start coolservice if it is + +`want` is between need and use - try to start coolservice if it is installed on the system, regardless of whether it is in the runlevel, but we don't care if it starts. |