X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=docs%2Finit-scripts.tex;h=ea74ded7c068b005638460269e409dbc7af81c24;hp=9d2fd3368be5c0731b13c0f376352c41ac637401;hb=0e9dc5af2a6ebebbb49d07b0a40d0fecf2e818da;hpb=4542570fe9022f1a754f686d3898c4566f845e95 diff --git a/docs/init-scripts.tex b/docs/init-scripts.tex index 9d2fd3368b..ea74ded7c0 100644 --- a/docs/init-scripts.tex +++ b/docs/init-scripts.tex @@ -24,24 +24,24 @@ This is done by the wrapper script \texttt{/etc/rc.common}. script should provide. \texttt{start()} is called when the user runs \texttt{/etc/init.d/httpd start} or (if the script is enabled and does not override this behavior) at system boot time. -Enabling and disabling init scripts is done by running \texttt{/etc/init.d/\textit{name} start} -or \texttt{/etc/init.d/\textit{name} stop}. This creates or removes symbolic links to the +Enabling and disabling init scripts is done by running \texttt{/etc/init.d/\textit{name} enable} +or \texttt{/etc/init.d/\textit{name} disable}. This creates or removes symbolic links to the init script in \texttt{/etc/rc.d}, which is processed by \texttt{/etc/init.d/rcS} at boot time. The order in which these scripts are run is defined in the variable \texttt{START} in the init -script, which is optional and defaults to \texttt{50}. Changing it requires running +script, which is optional and defaults to \texttt{50}. Changing it requires running \texttt{/etc/init.d/\textit{name} enable} again. You can also override these standard init script functions: \begin{itemize} - \item \texttt{boot()} \\ - Commands to be run at boot time. Defaults to \texttt{start()} - - \item \texttt{restart()} \\ - Restart your service. Defaults to \texttt{stop(); start()} - - \item \texttt{reload()} \\ - Reload the configuration files for your service. Defaults to \texttt{restart()} + \item \texttt{boot()} \\ + Commands to be run at boot time. Defaults to \texttt{start()} + + \item \texttt{restart()} \\ + Restart your service. Defaults to \texttt{stop(); start()} + + \item \texttt{reload()} \\ + Reload the configuration files for your service. Defaults to \texttt{restart()} \end{itemize}