diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2012-09-22 16:57:46 +0200 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2012-09-22 16:57:46 +0200 |
commit | 0406c6085bb25ace04c7880f860219ebfc67a16f (patch) | |
tree | d143eed140286b3793446a31a181c9053e812f1c /man/runscript.8 | |
parent | 0a132cdca508db86a62452dec081b316db880485 (diff) |
Add restart_pre/restart_post support, also document RC_CMD
Diffstat (limited to 'man/runscript.8')
-rw-r--r-- | man/runscript.8 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/man/runscript.8 b/man/runscript.8 index b87f8ef3..d823e330 100644 --- a/man/runscript.8 +++ b/man/runscript.8 @@ -357,6 +357,9 @@ In a Gentoo Prefix installation, this variable contains the prefix offset. Otherwise it is undefined. .It Va RC_UNAME The result of `uname -s`. +.It Va RC_CMD +Name of the command like start, stop, restart, ... +RC_CMD is one way to determine whether it's a restart or normal start/stop. .El .Sh FILES .Pp @@ -444,6 +447,11 @@ depend() need ${_need} } +restart_pre() { + # Verify a config and abort the restart in case it's not valid + ... +} + start_pre() { # Ensure that our dirs are correct |