2
0

dinit-service.5.m4 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. changequote(`@@@',`$$$')dnl
  2. @@@.TH DINIT-SERVICE "5" "$$$MONTH YEAR@@@" "Dinit $$$VERSION@@@" "Dinit \- service management system"
  3. .SH NAME
  4. Dinit service description files
  5. .\"
  6. .SH SYNOPSIS
  7. .\"
  8. .ft CR
  9. /etc/dinit.d/\fIservice-name\fR, $XDG_CONFIG_HOME/dinit.d/\fIservice-name\fR
  10. .ft
  11. .\"
  12. .SH DESCRIPTION
  13. .\"
  14. The service description files for \fBDinit\fR each describe a service. The name
  15. of the file corresponds to the name of the service it describes.
  16. .LP
  17. Service description files specify the various attributes of a service. A
  18. service description file is named after the service it represents, and is
  19. a plain-text file with simple key-value format.
  20. The description files are located in a service description directory;
  21. See \fBdinit\fR(8) for more details of the default service description directories,
  22. and how and when service descriptions are loaded.
  23. .LP
  24. All services have a \fItype\fR and a set of \fIdependencies\fR. These are discussed
  25. in the following subsections. The type, dependencies, and other attributes are
  26. specified via property settings, the format of which are documented in the
  27. \fBSERVICE PROPERTIES\fR subsection, which also lists the available properties.
  28. .LP
  29. In addition to service properties, some meta-commands can be used within service
  30. description files.
  31. See the \fBMETA-COMMANDS\fR subsection for more information.
  32. .\"
  33. .SS SERVICE TYPES
  34. .\"
  35. There are five basic types of service:
  36. .IP \(bu
  37. \fBProcess\fR services. This kind of service runs a single supervised process; the process
  38. is started when the service is started and stopped when the service is stopped. If the
  39. process stops this also affects the service state, i.e. the service's started/stopped state is
  40. linked to the state of its associated process.
  41. .IP \(bu
  42. \fBBgprocess\fR services ("background process" services).
  43. This kind of service is similar to a regular process service, but is for a process which
  44. "daemonizes" or otherwise forks from the original process which starts it, and writes its
  45. new process ID to a file.
  46. Dinit will read the process ID from the file and, if running as the system init process or if the
  47. system provides the necessary facilities, can supervise the process just as for a \fBprocess\fR
  48. service.
  49. When starting a \fBbgprocess\fR service, Dinit will not consider the service to be fully started
  50. until the original process forks and terminates.
  51. .IP \(bu
  52. \fBScripted\fR services are services which are started and stopped by executing commands (which
  53. need not actually be scripts, despite the name).
  54. Once a command completes successfully the service is considered started (or stopped, as appropriate)
  55. by Dinit.
  56. .IP \(bu
  57. \fBInternal\fR services do not run as an external process at all.
  58. They can be started and stopped without any external action.
  59. They are useful for grouping other services (via service dependencies).
  60. .IP \(bu
  61. \fBTriggered\fR services are similar to internal processes, but an external trigger is required
  62. before they will start (i.e. Dinit will not consider them as started until the trigger is issued).
  63. The \fBdinitctl trigger\fR command can be used to trigger such a service; see \fBdinitctl\fR(8).
  64. .LP
  65. Independent of their type, the state of services can be linked to other
  66. services via dependency relationships, which are discussed in the next section.
  67. .\"
  68. .SS SERVICE DEPENDENCIES
  69. .\"
  70. A service dependency relationship, broadly speaking, specifies that for one
  71. service to run, another must also be running; when starting a service Dinit will wait until
  72. dependencies are satisfied before starting any processes associated with the service.
  73. The first service is the \fIdependent\fR service and the latter is the \fIdependency\fR
  74. service (we will henceforth generally refer to the the dependency relationship as the
  75. \fIrelationship\fR and use \fIdependency\fR to refer to the service).
  76. A dependency relationship is specified via the properties of the dependent.
  77. There are different relationship types, as follows:
  78. .IP \(bu
  79. A \fBneed\fR (or "hard") relationship specifies that the dependent must wait
  80. for the dependency to be started before it starts, and that the dependency
  81. must remain started while the dependent is started.
  82. Starting the dependent will start the dependency, and stopping the dependency will stop the
  83. dependent. This type of relationship is specified using a \fBdepends-on\fR property.
  84. .IP \(bu
  85. A \fBmilestone\fR relationship specifies that the dependency must
  86. start successfully before the dependent starts.
  87. Starting the dependent will therefore start the dependency.
  88. Once started, the relationship is satisfied; if the dependency then stops, it
  89. has no effect on the dependent.
  90. However, if the dependency fails to start or has its startup cancelled, the dependent will
  91. not start (and will return to the stopped state).
  92. This type of relationship is specified using a \fBdepends-ms\fR property.
  93. .IP \(bu
  94. A \fBwaits-for\fR relationship specifies that the dependency must
  95. start successfully, or fail to start, before the dependent starts.
  96. Starting the dependent will attempt to first start the dependency, but failure will
  97. not prevent the dependent from starting.
  98. If the dependency starts, stopping it will have no effect on the dependent.
  99. This type of relationship is specified using a \fBwaits-for\fR property.
  100. .LP
  101. See the \fBSERVICE ACTIVATION MODEL\fR section in \fBdinit\fR(8) for more details of how service
  102. dependencies affect starting and stopping of services.
  103. .\"
  104. .SS SERVICE PROPERTIES
  105. .\"
  106. This section described the various service properties that can be specified
  107. in a service description file. The properties specify the type of the service,
  108. dependencies of the service, and other service configuration.
  109. .LP
  110. Each line of the file can specify a single property value, expressed as `\fIproperty-name\fR =
  111. \fIvalue\fR', or `\fIproperty-name\fR: \fIvalue\fR'.
  112. There is currently no functional difference between either form of assignment, but note that some
  113. settings will override any previous setting of the same property whereas some effectively add a
  114. new distinct property, and it is recommended to use `=' or `:' (respectively) to distinguish them.
  115. A small selection of properties can have their value appended to, once set on a previous line,
  116. by specifying the property name again and using the `+=' operator in place of `=' (or `:').
  117. Comments begin with a hash mark (#) and extend to the end of the line (they must be
  118. separated from setting values by at least one whitespace character).
  119. Values are interpreted literally, except that:
  120. .\"
  121. .IP \(bu
  122. White space (comprised of spaces, tabs, etc) is collapsed to a single space, except
  123. leading or trailing white space around the property value, which is stripped.
  124. .IP \(bu
  125. For settings which specify a command with arguments, the value is interpreted as a
  126. series of tokens separated by white space, rather than a single string of characters.
  127. .IP \(bu
  128. Double quotes (") can be used around all or part of a property value, to
  129. prevent whitespace collapse and prevent interpretation of other special
  130. characters (such as "#") inside the quotes.
  131. The quote characters are not considered part of the property value.
  132. White space appearing inside quotes does not act as a delimiter for tokens.
  133. .IP \(bu
  134. A backslash (\\) can be used to escape the next character, causing it to
  135. lose any special meaning and become part of the property value (escaped newlines are an
  136. exception\(em\&they mark the end of a comment, and otherwise are treated as an unescaped space, allowing
  137. a property value to extend to the next line).
  138. A double backslash (\\\\) is collapsed to a single backslash within the parameter value.
  139. White space preceded by a backslash will not separate tokens.
  140. .LP
  141. Setting a property generally overrides any previous setting (from prior lines).
  142. However some properties are set additively; these include dependency relationships and \fBoptions\fR
  143. properties.
  144. .LP
  145. The following properties can be specified:
  146. .TP
  147. \fBtype\fR = {process | bgprocess | scripted | internal | triggered}
  148. Specifies the service type; see the \fBSERVICE TYPES\fR section.
  149. .TP
  150. \fBcommand\fR = \fIcommand-string\fR
  151. .TQ
  152. \fBcommand\fR += \fIcommand-string-addendum\fR
  153. Specifies the command, including command-line arguments, for starting the process.
  154. Applies only to \fBprocess\fR, \fBbgprocess\fR and \fBscripted\fR services.
  155. The value is subject to variable substitution (see \fBVARIABLE SUBSTITUTION\fR).
  156. The `+=' operator can be used with this setting to append to a command set previously.
  157. .TP
  158. \fBstop\-command\fR = \fIcommand-string\fR
  159. .TQ
  160. \fBstop\-command\fR += \fIcommand-string-addendum\fR
  161. Specifies the command to stop the service (optional). Applicable to \fBprocess\fR, \fBbgprocess\fR and
  162. \fBscripted\fR services. If specified for \fBprocess\fR or \fBbgprocess\fR services, the "stop
  163. command" will be executed in order to stop the service, instead of signalling the service process.
  164. The value is subject to variable substitution (see \fBVARIABLE SUBSTITUTION\fR).
  165. The `+=' operator can be used with this setting to append to a command set previously.
  166. .TP
  167. \fBworking\-dir\fR = \fIdirectory\fR
  168. Specifies the working directory for this service.
  169. For a scripted service, this affects both the start command and the stop command.
  170. The default is the directory containing the service description.
  171. The value is subject to variable substitution (see \fBVARIABLE SUBSTITUTION\fR).
  172. .TP
  173. \fBrun\-as\fR = \fIuser-id\fR
  174. Specifies which user to run the process(es) for this service as.
  175. Specify as a username or numeric ID.
  176. If specified by name, the group for the process will also be set to the primary
  177. group of the specified user, and supplementary groups will be initialised (unless support
  178. for them is disabled) according to the system's group database.
  179. If specified by number, the group for the process will remain the same as that of the
  180. running \fBdinit\fR process, and all supplementary groups will be dropped (unless support
  181. has been disabled).
  182. .TP
  183. \fBenv\-file\fR = \fIfile\fR
  184. Specifies a file containing value assignments for environment variables, in the same
  185. format recognised by the \fBdinit\fR command's \fB\-\-env\-file\fR option (see \fBdinit\fR(8)).
  186. The file is read when the service is loaded, therefore values from it can be used in variable
  187. substitutions (see \fBVARIABLE SUBSTITUTION\fR).
  188. Variable substitution is not performed on the \fBenv\-file\fR property value itself.
  189. If the path is not absolute, it is resolved relative to the directory containing the service
  190. description.
  191. .TP
  192. \fBrestart\fR = {yes | true | on-failure | no | false}
  193. Indicates whether the service should automatically restart if it stops, including due to
  194. unexpected process termination or a dependency stopping.
  195. Specifying \fBon-failure\fR for a \fBprocess\fR or \fBbgprocess\fR service causes the service to
  196. be restarted only when the exit status of the service process is non-zero, or if the process was
  197. terminated via a signal (other than SIGHUP, SIGINT, SIGUSR1, SIGUSR2 or SIGTERM, which indicate
  198. deliberate termination).
  199. Specifying \fBon-failure\fR for any other type of service is the same as specifying \fBfalse\fR
  200. (the service will not restart automatically).
  201. Note that if a service stops due to user request, automatic restart is inhibited.
  202. $$$changequote(`,')dnl
  203. ifelse(DEFAULT_AUTO_RESTART, ALWAYS,
  204. ``The default is to automatically restart.'',
  205. DEFAULT_AUTO_RESTART, ON_FAILURE,
  206. ``The default is to automatically restart only on process failure (\fBon-failure\fR).'',
  207. ``The default is to not automatically restart.'')
  208. changequote(`@@@',`$$$')dnl
  209. @@@.TP
  210. \fBsmooth\-recovery\fR = {yes | true | no | false}
  211. Applies only to \fBprocess\fR and \fBbgprocess\fR services.
  212. When set to true/yes, if the process terminates unexpectedly (i.e. without a stop order having been
  213. issued), an automatic process restart is performed, without first stopping any dependent services
  214. and without the service changing state.
  215. The normal restart restrictions (such as \fBrestart\-limit\-count\fR) apply.
  216. .TP
  217. \fBrestart\-delay\fR = \fIXXX.YYYY\fR
  218. Specifies the minimum time (in seconds) between automatic restarts.
  219. The default is 0.2 (200 milliseconds).
  220. .TP
  221. \fBrestart\-limit\-interval\fR = \fIXXX.YYYY\fR
  222. Sets the interval (in seconds) over which restarts are limited.
  223. If a process automatically restarts more than a certain number of times (specified by the
  224. \fBrestart-limit-count\fR setting) in this time interval, it will not be restarted again.
  225. The default value is 10 seconds.
  226. .TP
  227. \fBrestart\-limit\-count\fR = \fINNN\fR
  228. Specifies the maximum number of times that a service can automatically restart
  229. over the interval specified by \fBrestart\-limit\-interval\fR.
  230. Specify a value of 0 to disable the restart limit.
  231. The default value is 3.
  232. .TP
  233. \fBstart\-timeout\fR = \fIXXX.YYY\fR
  234. Specifies the time in seconds allowed for the service to start.
  235. If the service takes longer than this, its process group is sent a SIGINT signal
  236. and enters the "stopping" state (this may be subject to a stop timeout, as
  237. specified via \fBstop\-timeout\fR, after which the process group will be
  238. terminated via SIGKILL).
  239. The timeout period begins only when all dependencies have been satisfied.
  240. The default value is $$$DEFAULT_START_TIMEOUT@@@.
  241. A value of 0 allows unlimited start time.
  242. .TP
  243. \fBstop\-timeout\fR = \fIXXX.YYY\fR
  244. Specifies the time in seconds allowed for the service to stop.
  245. If the service takes longer than this, its process group is sent a SIGKILL signal
  246. which should cause it to terminate immediately.
  247. The timeout period begins only when all dependent services have already stopped.
  248. The default value is $$$DEFAULT_STOP_TIMEOUT@@@.
  249. A value of 0 allows unlimited stop time.
  250. .TP
  251. \fBpid\-file\fR = \fIpath-to-file\fR
  252. For \fBbgprocess\fR type services only; specifies the path of the file where
  253. daemon will write its process ID before detaching.
  254. Dinit will read the contents of this file when starting the service, once the initial process
  255. exits, and will supervise the process with the discovered process ID.
  256. Dinit may also send signals to the process ID to stop the service; if \fBdinit\fR runs as a
  257. privileged user the path should have appropriate permissions to permit abuse by untrusted
  258. unprivileged processes.
  259. .IP
  260. The value is subject to variable substitution (see \fBVARIABLE SUBSTITUTION\fR).
  261. .TP
  262. \fBdepends\-on\fR: \fIservice-name\fR
  263. This service depends on the named service.
  264. Starting this service will start the named service; the command to start this service will not be executed
  265. until the named service has started.
  266. If the named service stops then this service will also be stopped.
  267. .TP
  268. \fBdepends\-ms\fR: \fIservice-name\fR
  269. This service has a "milestone" dependency on the named service. Starting this
  270. service will start the named service; this service will not start until the
  271. named service has started, and will fail to start if the named service does
  272. not start.
  273. Once the named (dependent) service reaches the started state, however, the
  274. dependency may stop without affecting the dependent service.
  275. .TP
  276. \fBwaits\-for\fR: \fIservice-name\fR
  277. When this service is started, wait for the named service to finish starting
  278. (or to fail starting) before commencing the start procedure for this service.
  279. Starting this service will automatically start the named service.
  280. If the named service fails to start, this service will start as usual (subject to
  281. other dependencies being met).
  282. .TP
  283. \fBdepends\-on.d\fR: \fIdirectory-path\fR
  284. For each file name in \fIdirectory-path\fR which does not begin with a dot,
  285. add a \fBdepends-on\fR dependency to the service with the same name.
  286. Note that contents of files in the specified directory are not significant; expected
  287. usage is to have symbolic links to the associated service description files,
  288. but this is not required.
  289. Failure to read the directory contents, or to find any of the services named within,
  290. is not considered fatal.
  291. .IP
  292. The directory path, if not absolute, is relative to the directory containing the service
  293. description file.
  294. .TP
  295. \fBdepends\-ms.d\fR: \fIdirectory-path\fR
  296. As for \fBdepends-on.d\fR, but with dependency type \fBdepends\-ms\fR.
  297. .TP
  298. \fBwaits\-for.d\fR: \fIdirectory-path\fR
  299. As for \fBdepends-on.d\fR, but with dependency type \fBwaits\-for\fR.
  300. .TP
  301. \fBafter\fR: \fIservice-name\fR
  302. When starting this service, if the named service is also starting, wait for the named service
  303. to finish starting before bringing this service up. This is similar to a \fBwaits\-for\fR
  304. dependency except no dependency relationship is implied; if the named service is not starting,
  305. starting this service will not cause it to start (nor wait for it in that case).
  306. It does not by itself cause the named service to be loaded (if loaded later, the "after"
  307. relationship will be enforced from that point).
  308. .TP
  309. \fBbefore\fR: \fIservice-name\fR
  310. When starting the named service, if this service is also starting, wait for this service
  311. to finish starting before bringing the named service up. This is largely equivalent to specifying
  312. an \fBafter\fR relationship to this service from the named service.
  313. However, it does not by itself cause the named service to be loaded (if loaded later, the "before"
  314. relationship will be enforced from that point).
  315. .TP
  316. \fBchain\-to\fR = \fIservice-name\fR
  317. When this service terminates (i.e. starts successfully, and then stops of its
  318. own accord), the named service should be started.
  319. Note that the named service is not loaded until that time; naming an invalid service will
  320. not cause this service to fail to load.
  321. .IP
  322. This can be used for a service that supplies an interactive "recovery mode"
  323. for another service; once the user exits the recovery shell, the primary
  324. service (as named via this setting) will then start.
  325. It also supports multi-stage system startup where later service description files reside on
  326. a separate filesystem that is mounted during the first stage; such service
  327. descriptions will not be found at initial start, and so cannot be started
  328. directly, but can be chained via this directive.
  329. .IP
  330. The chain is not executed if the initial service was explicitly stopped,
  331. stopped due to a dependency stopping (for any reason), if it will restart
  332. (including due to a dependent restarting), or if its process terminates
  333. abnormally or with an exit status indicating an error.
  334. However, if the \fBalways-chain\fR option is set the chain is started regardless of the
  335. reason and the status of this service termination.
  336. .TP
  337. \fBsocket\-listen\fR = \fIsocket-path\fR
  338. Pre-open a socket for the service and pass it to the service using the
  339. \fBsystemd\fR activation protocol.
  340. This by itself does not give so called "socket activation", but does allow any
  341. process trying to connect to the specified socket to do so immediately after
  342. the service is started (even before the service process is properly prepared
  343. to accept connections).
  344. .IP
  345. The path value is subject to variable substitution (see \fBVARIABLE SUBSTITUTION\fR).
  346. .TP
  347. \fBsocket\-permissions\fR = \fIoctal-permissions-mask\fR
  348. Gives the permissions for the socket specified using \fBsocket\-listen\fR.
  349. Normally this will be 600 (user access only), 660 (user and group
  350. access), or 666 (all users).
  351. The default is 666.
  352. .TP
  353. \fBsocket\-uid\fR = {\fInumeric-user-id\fR | \fIusername\fR}
  354. Specifies the user (name or numeric ID) that should own the activation socket.
  355. If \fBsocket\-uid\fR is specified as a name without also specifying \fBsocket\-gid\fR, then
  356. the socket group is the primary group of the specified user (as found in the
  357. system user database, normally \fI/etc/passwd\fR).
  358. If the \fBsocket\-uid\fR setting is not provided, the socket will be owned by the user id of the \fBdinit\fR process.
  359. .TP
  360. \fBsocket\-gid\fR = {\fInumeric-group-id\fR | \fIgroup-name\fR}
  361. Specifies the group of the activation socket. See discussion of \fBsocket\-uid\fR.
  362. .TP
  363. \fBterm\-signal\fR = {\fBnone\fR | \fIsignal-name\fR}
  364. Specifies the signal to send to the process when requesting it to terminate (applies to `process'
  365. and `bgprocess' services only).
  366. Signal names are specified as the POSIX signal name without the \fBSIG\fR- prefix.
  367. At least \fBHUP\fR, \fBTERM\fR, and \fBKILL\fR are supported (use \fBdinitctl signal \-\-list\fR
  368. for the full list of supported signals).
  369. The default is TERM (the SIGTERM signal).
  370. See also the discussion of \fBstop\-timeout\fR.
  371. .TP
  372. \fBready\-notification\fR = {\fBpipefd:\fR\fIfd-number\fR | \fBpipevar:\fR\fIenv-var-name\fR}
  373. Specifies the mechanism, if any, by which a process service will notify that it is ready
  374. (successfully started).
  375. If not specified, a process service is considered started as soon as it has begun execution.
  376. The two options are:
  377. .RS
  378. .IP \(bu
  379. \fBpipefd:\fR\fIfd-number\fR \(em the service will write a message to the specified file descriptor,
  380. which \fBdinit\fR sets up as the write end of a pipe before execution.
  381. This mechanism is compatible with the S6 supervision suite.
  382. .IP \(bu
  383. \fBpipevar:\fR\fIenv-var-name\fR \(em the service will write a message to file descriptor identified
  384. using the contents of the specified environment variable, which will be set by \fBdinit\fR before
  385. execution to a file descriptor (chosen arbitrarily) attached to the write end of a pipe.
  386. .RE
  387. .TP
  388. \fBlog\-type\fR = {file | buffer | pipe | none}
  389. Specifies how the output of this service is logged.
  390. This setting is valid only for process-based services (including \fBscripted\fR services).
  391. .RS
  392. .IP \(bu
  393. \fBfile\fR: output will be written to a file; see the \fBlogfile\fR setting.
  394. .IP \(bu
  395. \fBbuffer\fR: output will be buffered in memory, up to a limit specified via the
  396. \fBlog\-buffer\-size\fR setting.
  397. The buffer contents can be examined via the \fBdinitctl\fR(8) \fBcatlog\fR subcommand.
  398. .IP \(bu
  399. \fBpipe\fR: output will be written to a pipe, and may be consumed by another service
  400. (see the \fBconsumer\-of\fR setting); note that, if output is not consumed promptly, the pipe buffer
  401. may become full which may cause the service process to stall.
  402. .IP \(bu
  403. \fBnone\fR: output is discarded.
  404. .RE
  405. .IP
  406. The default log type is \fBnone\fR, unless the \fBlogfile\fR setting is specified in which case
  407. the default log type is \fBfile\fR. For \fBpipe\fR (and \fBbuffer\fR, which uses a pipe internally)
  408. note that the pipe created may outlive the service process and be re-used if the service is stopped
  409. and restarted.
  410. .\"
  411. .TP
  412. \fBlogfile\fR = \fIlog-file-path\fR
  413. Specifies the log file for the service.
  414. Output from the service process (standard output and standard error streams) will be appended to this file,
  415. which will be created if it does not already exist. The file ownership and permissions are adjusted
  416. according to the \fBlogfile\-uid\fR, \fBlogfile\-gid\fR and \fBlogfile\-permissions\fR settings.
  417. This setting has no effect if the service is set to run on the console (via the \fBruns\-on\-console\fR,
  418. \fBstarts\-on\-console\fR, or \fBshares\-console\fR options).
  419. The value is subject to variable substitution (see \fBVARIABLE SUBSTITUTION\fR).
  420. Note that if the directory in which the logfile resides does not exist (or is not otherwise accessible to
  421. \fBdinit\fR) when the service is started, the service will not start successfully.
  422. If this settings is specified and \fBlog\-type\fR is not specified or is currently \fBnone\fR, then
  423. the log type will be changed to \fBfile\fR.
  424. .TP
  425. \fBlogfile\-permissions\fR = \fIoctal-permissions-mask\fR
  426. Gives the permissions for the log file specified using \fBlogfile\fR. Normally this will be 600 (user access
  427. only), 640 (also readable by the group), or 644 (readable by all users).
  428. If the log file already exists when the service starts, its permissions will be changed in accordance with
  429. the value of this setting.
  430. The default is value 600 (accessible to only the owning user).
  431. .TP
  432. \fBlogfile\-uid\fR = {\fInumeric-user-id\fR | \fIusername\fR}
  433. Specifies the user (name or numeric ID) that should own the log file.
  434. If \fBlogfile\-uid\fR is specified as a name without also specifying \fBlogfile\-gid\fR, then
  435. the log file group is the primary group of the specified user (as found in the
  436. system user database, normally \fI/etc/passwd\fR).
  437. If the log file already exists when the service starts, its ownership will be changed in accordance with
  438. the value of this setting.
  439. The default value is the user id of the \fBdinit\fR process.
  440. .TP
  441. \fBlogfile\-gid\fR = {\fInumeric-group-id\fR | \fIgroup-name\fR}
  442. Specifies the group of the log file. See discussion of \fBlogfile\-uid\fR.
  443. .TP
  444. \fBlog\-buffer\-size\fR = \fIsize-in-bytes\fR
  445. If the log type (see \fBlog\-type\fR) is set to \fBbuffer\fR, this setting controls the maximum
  446. size of the buffer used to store process output. If the buffer becomes full, further output from
  447. the service process will be discarded.
  448. .TP
  449. \fBconsumer\-of\fR = \fIservice-name\fR
  450. Specifies that this service consumes (as its standard input) the output of another service.
  451. For example, this allows this service to act as a logging agent for another service.
  452. The named service must be a process-based service with \fBlog\-type\fR set to \fBpipe\fR.
  453. This setting is only valid for \fBprocess\fR and \fBbgprocess\fR services.
  454. .TP
  455. \fBoptions\fR: \fIoption\fR...
  456. Specifies various options for this service. See the \fBOPTIONS\fR section.
  457. .TP
  458. \fBload\-options\fR: \fIload_option\fR...
  459. Specifies options for interpreting other settings when loading this service description.
  460. Currently there are two available options. One is \fBexport-passwd-vars\fR, which
  461. specifies that the environment variables `\fBUSER\fR', `\fBLOGNAME\fR' (same as
  462. `\fBUSER\fR'), `\fBHOME\fR', `\fBSHELL\fR', `\fBUID\fR', and `\fBGID\fR' should
  463. be exported into the service's load environment (that is, overriding any global
  464. environment including the global environment file, but being overridable by the
  465. service's environment file). The other is \fBexport-service-name\fR, which will
  466. set the environment variable `\fBDINIT_SERVICE\fR' containing the name of the
  467. current service.
  468. .TP
  469. \fBinittab\-id\fR = \fIid-string\fR
  470. When this service is started, if this setting (or the \fBinittab\-line\fR setting) has a
  471. specified value, an entry will be created in the system "utmp" database which tracks
  472. processes and logged-in users.
  473. Typically this database is used by the "who" command to list logged-in users.
  474. The entry will be cleared when the service terminates.
  475. .IP
  476. The \fBinittab\-id\fR setting specifies the "inittab id" to be written in the entry for
  477. the process.
  478. The value is normally quite meaningless.
  479. However, it should be distinct (or unset) for separate processes.
  480. It is typically limited to a very short length.
  481. .IP
  482. The "utmp" database is mostly a historical artifact.
  483. Access to it on some systems is prone to denial-of-service by unprivileged users.
  484. It is therefore recommended that this setting not be used.
  485. However, "who" and similar utilities may not work correctly without this setting
  486. (or \fBinittab\-line\fR) enabled appropriately.
  487. .IP
  488. This setting has no effect if Dinit was not built with support for writing to the "utmp"
  489. database. It applies only to \fBprocess\fR services.
  490. .TP
  491. \fBinittab\-line\fR = \fItty-name-string\fR
  492. This specifies the tty line that will be written to the "utmp" database when this service
  493. is started.
  494. Normally, for a terminal login service, it would match the terminal device name on which
  495. the login process runs, without the "/dev/" prefix.
  496. .IP
  497. See the description of the \fBinittab\-id\fR setting for details.
  498. .TP
  499. \fBrlimit\-nofile\fR = \fIresource-limits\fR
  500. Specifies the number of file descriptors that a process may have open simultaneously.
  501. See the \fBRESOURCE LIMITS\fR section.
  502. .TP
  503. \fBrlimit\-core\fR = \fIresource-limits\fR
  504. Specifies the maximum size of the core dump file that will be generated for the process if it
  505. crashes (in a way that would result in a core dump).
  506. See the \fBRESOURCE LIMITS\fR section.
  507. .TP
  508. \fBrlimit\-data\fR = \fIresource-limits\fR
  509. Specifies the maximum size of the data segment for the process, including statically allocated
  510. data and heap allocations.
  511. Precise meaning may vary between operating systems.
  512. See the \fBRESOURCE LIMITS\fR section.
  513. .TP
  514. \fBrlimit\-addrspace\fR = \fIresource-limits\fR
  515. Specifies the maximum size of the address space of the process.
  516. See the \fBRESOURCE LIMITS\fR section.
  517. Note that some operating systems (notably, OpenBSD) do not support this limit; the
  518. setting will be ignored on such systems.
  519. .TP
  520. \fBrun\-in\-cgroup\fR = \fIcgroup-path\fR
  521. Run the service process(es) in the specified cgroup (see \fBcgroups\fR(7)).
  522. The cgroup is specified as a path; if it has a leading slash, the remainder of the path is
  523. interpreted as relative to \fI/sys/fs/cgroup\fR, and otherwise the entire path is interpreted
  524. relative to the cgroup in which \fBdinit\fR is running (as determined at startup or specified
  525. by options).
  526. The latter can only be used if there is only a single cgroup hierarchy (either the cgroups v2
  527. hierarchy with no cgroups v1 hierarchies, or a single cgroups v1 hierarchy).
  528. .IP
  529. Note that due to the "no internal processes" rule in cgroups v2, a relative path must typically
  530. begin with ".." if cgroups v2 are used.
  531. .IP
  532. The named cgroup must already exist prior to the service starting; it will not be created by
  533. \fBdinit\fR.
  534. .IP
  535. This setting is only available if \fBdinit\fR was built with cgroups support.
  536. .\"
  537. .SS OPTIONS
  538. .\"
  539. These options are specified via the \fBoptions\fR parameter.
  540. .\"
  541. .TP
  542. \fBruns\-on\-console\fR
  543. Specifies that this service uses the console; its input and output should be
  544. directed to the console (or precisely, to the device to which \fBdinit\fR's standard
  545. output stream is connected).
  546. A service running on the console prevents other services from running on the
  547. console (they will queue for the console).
  548. .IP
  549. Proper operation of this option (and related options) assumes that \fBdinit\fR
  550. is itself attached correctly to the console device (or a terminal, in which case
  551. that terminal will be used as the "console").
  552. .IP
  553. The \fIinterrupt\fR key (normally control-C) may be active for process / scripted
  554. services that run on the console, depending on terminal configuration and operating-system
  555. specifics.
  556. The interrupt signal (SIGINT), however, is masked by default (but see \fBunmask\-intr\fR).
  557. .TP
  558. \fBstarts\-on\-console\fR
  559. Specifies that this service uses the console during service startup.
  560. This is identical to \fBruns\-on\-console\fR except that the console will be released
  561. (available for running other services) once the service has started.
  562. It is applicable only for \fBbgprocess\fR and \fBscripted\fR services.
  563. .IP
  564. As for the \fBruns\-on\-console\fR option, the \fIinterrupt\fR key will be enabled
  565. while the service has the console.
  566. .TP
  567. \fBshares\-console\fR
  568. Specifies that this service should be given access to the console (input and output
  569. will be connected to the console), but that it should not exclusively hold the
  570. console. A service given access to the console in this way will not delay the startup of services
  571. which require exclusive access to the console (see \fBstarts\-on\-console\fR,
  572. \fBruns\-on\-console\fR) nor will it be itself delayed if such services are already running.
  573. .IP
  574. This is mutually exclusive with both \fBstarts\-on\-console\fR and \fBruns\-on\-console\fR;
  575. setting this option unsets both those options, and setting either of those options unsets
  576. this option.
  577. .TP
  578. \fBunmask\-intr\fR
  579. For services that run or start on the console, specifies that the terminal interrupt signal
  580. (SIGINT, normally invoked by control-C) should be unmasked.
  581. Handling of an interrupt is determined by the service process, but typically will
  582. cause it to terminate.
  583. This option may therefore be used to allow a service to be terminated by the user via
  584. a keypress combination.
  585. In combination with \fBskippable\fR, it may allow service startup to be skipped.
  586. .IP
  587. A service with this option will typically also have the \fBstart\-interruptible\fR option
  588. set.
  589. .IP
  590. Note that whether an interrupt can be generated, and the key combination required to do so,
  591. depends on the operating system's handling of the console device and, if it is a terminal,
  592. how the terminal is configured; see \fBstty\fR(1).
  593. .IP
  594. Note also that a process may choose to mask or unmask the interrupt signal of its own accord,
  595. once it has started.
  596. Shells, in particular, may unmask the signal; it might not be possible to reliably run a shell
  597. script on the console without allowing a user to interrupt it.
  598. .TP
  599. \fBstarts\-rwfs\fR
  600. This service mounts the root filesystem read/write (or at least mounts the
  601. normal writable filesystems for the system).
  602. This prompts Dinit to attempt to create its control socket, if it has not already managed to do so,
  603. and similarly log boot time to the system \fBwtmp\fR(5) database (if supported) if not yet done.
  604. This option may be specified on multiple services, which may be useful if the \fBwtmp\fR database becomes
  605. writable at a different stage than the control socket location becomes writable, for example.
  606. If the control socket has already been created, this option currently causes Dinit to check that
  607. the socket "file" still exists and re-create it if not. It is not recommended to rely on this
  608. behaviour.
  609. .TP
  610. \fBstarts\-log\fR
  611. This service starts the system log daemon.
  612. Dinit will begin logging via the \fI/dev/log\fR socket.
  613. .TP
  614. \fBpass\-cs\-fd\fR
  615. Pass an open Dinit control socket to the process when launching it (the
  616. \fIDINIT_CS_FD\fR environment variable will be set to the file descriptor of
  617. the socket).
  618. This allows the service to issue commands to Dinit even if the regular control socket is not available yet.
  619. .IP
  620. Using this option has security implications! The service which receives the
  621. control socket must close it before launching any untrusted processes.
  622. You should not use this option unless the service is designed to receive a Dinit
  623. control socket.
  624. .TP
  625. \fBstart\-interruptible\fR
  626. Indicates that this service can have its startup interrupted (cancelled), by sending it the SIGINT signal.
  627. If service state changes such that this service will stop, but it is currently starting, and this option
  628. is set, then Dinit will attempt to interrupt it rather than waiting for its startup to complete.
  629. This is meaningful only for \fBbgprocess\fR and \fBscripted\fR services.
  630. .TP
  631. \fBskippable\fR
  632. For scripted services, indicates that if the service startup process terminates
  633. via an interrupt signal (SIGINT), then the service should be considered started.
  634. Note that if the interrupt was issued by Dinit to cancel startup, the service
  635. will instead be considered stopped.
  636. .IP
  637. This can be combined with options such as \fBstarts\-on\-console\fR to allow
  638. skipping certain non-essential services (such as filesystem checks) using the
  639. \fIinterrupt\fR key (typically control-C).
  640. .TP
  641. \fBsignal\-process-only\fR
  642. Signal the service process only, rather than its entire process group, whenever
  643. sending it a signal for any reason.
  644. .TP
  645. \fBalways\-chain\fR
  646. Alters behaviour of the \fBchain-to\fR property, forcing the chained service to
  647. always start on termination of this service (instead of only when this service
  648. terminates with an exit status indicating success).
  649. .TP
  650. \fBkill\-all\-on\-stop\fR
  651. Before stopping this service, send a TERM signal and then (after a short pause) a
  652. KILL signal to all other processes in the system, forcibly terminating them.
  653. This option is intended to allow system shutdown scripts to run without any possible
  654. interference from "leftover" or orphaned processes (for example, unmounting file systems usually
  655. requires that the file systems are no longer in use).
  656. .IP
  657. This option must be used with care since the signal broadcast does not discriminate and
  658. potentially kills other services (or their shutdown scripts); a strict dependency ordering
  659. is suggested, i.e. every other service should either be a (possibly transitive) dependency or
  660. dependent of the service with this option set.
  661. .IP
  662. This option can be used for scripted and internal services only.
  663. .\"
  664. .SS RESOURCE LIMITS
  665. .\"
  666. There are several settings for specifying process resource limits: \fBrlimit\-nofile\fR,
  667. \fBrlimit\-core\fR, \fBrlimit\-data\fR and \fBrlimit\-addrspace\fR.
  668. See the descriptions of each above.
  669. These settings place a limit on resource usage directly by the process.
  670. Note that resource limits are inherited by subprocesses, but that usage of a resource
  671. and subprocess are counted separately (in other words, a process can effectively bypass
  672. its resource limits by spawning a subprocess and allocating further resources within it).
  673. .LP
  674. Resources have both a \fIhard\fR and \fIsoft\fR limit.
  675. The soft limit is the effective limit, but note that a process can raise its soft limit up
  676. to the hard limit for any given resource.
  677. Therefore the soft limit acts more as a sanity-check; a process can exceed the soft limit
  678. only by deliberately raising it first.
  679. .LP
  680. Resource limits are specified in the following format:
  681. .sp
  682. .RS
  683. \fIsoft-limit\fR:\fIhard-limit\fR
  684. .RE
  685. .sp
  686. Either the soft limit or the hard limit can be omitted (in which case it will be unchanged).
  687. A limit can be specified as a dash, `\fB\-\fR', in which case the limit will be removed.
  688. If only one value is specified with no colon separator, it affects both the soft and hard limit.
  689. .\"
  690. .SS VARIABLE SUBSTITUTION
  691. .\"
  692. Some service properties specify a path to a file or directory, or a command line.
  693. For these properties, the specified value may contain one or more environment
  694. variable names, each preceded by a single `\fB$\fR' character, as in `\fB$NAME\fR'.
  695. In each case the value of the named environment variable will be substituted.
  696. The name must begin with a non-punctuation, non-space, non-digit character, and ends
  697. before the first control character, space, or punctuation character other than `\fB_\fR'.
  698. To avoid substitution, a single `\fB$\fR' can be escaped with a second, as in `\fB$$\fR'.
  699. .LP
  700. Variable substitution also supports a limited subset of shell syntax. You can use curly
  701. braces to enclose the variable, as in `\fB${NAME}\fR'.
  702. Limited parameter expansion is also supported, specifically the forms `\fB${NAME:\-word}\fR'
  703. (substitute `\fBword\fR' if variable is unset or empty), `\fB${NAME\-word}\fR' (substitute
  704. `\fBword\fR' if variable is unset), `\fB${NAME:+word}\fR' (substitute `\fBword\fR' if variable is
  705. set and non\-empty), and `\fB${NAME+word}\fR' (substitute `\fBword\fR' if variable is set).
  706. Unlike in shell expansion, the substituted \fBword\fR does not itself undergo expansion and
  707. cannot contain closing brace characters or whitespace, even if quoted.
  708. .LP
  709. Note that by default, command-line variable substitution occurs after splitting the line into
  710. separate arguments and so
  711. a single environment variable cannot be used to add multiple arguments to a command line.
  712. If a designated variable is not defined, it is replaced with an empty (zero-length) string, possibly producing a
  713. zero-length argument.
  714. To alter this behaviour use a slash after \fB$\fR, as in `\fB$/NAME\fR'; the expanded value will then
  715. be split into several arguments separated by whitespace or, if the value is empty or consists only
  716. of whitespace, will collapse (instead of producing an empty or whitespace argument).
  717. .LP
  718. Variable substitution occurs when the service is loaded.
  719. Therefore, it is typically not useful for dynamically changing service parameters (including
  720. command line) based on a variable that is inserted into \fBdinit\fR's environment once it is
  721. running (for example via \fBdinitctl setenv\fR).
  722. .LP
  723. The effective environment for variable substitution in setting values matches the environment supplied to the process
  724. for a service when it is launched. The priority of environment variables, from highest to lowest, for both is:
  725. .IP \(bu
  726. variables from the service \fBenv\-file\fR
  727. .IP \(bu
  728. variables set by the \fBexport\-passwd\-vars\fR and \fBexport\-service\-name\fR load options
  729. .IP \(bu
  730. the process environment of \fBdinit\fR (which is established on launch by the process environment of the
  731. parent, amended by loading the environment file (if any) as specified in \fBdinit\fR(8), and further
  732. amended via \fBdinitctl setenv\fR commands or equivalent).
  733. .LP
  734. Note that since variable substitution is performed on service load, the values seen by a service process may differ from those
  735. used for substitution, if they have been changed in the meantime.
  736. Using environment variable values in service commands and parameters can be used as means to
  737. provide easily-adjustable service configuration, but is not ideal for this purpose and alternatives
  738. should be considered.
  739. .\"
  740. .SS META-COMMANDS
  741. .\"
  742. A number of meta-commands can be used in service description files.
  743. A meta-command is indicated by an 'at' sign, \fB@\fR, at the beginning of the line (possibly preceded by whitespace).
  744. Arguments to a meta-command follow on the same line and are interpreted as for setting values.
  745. .LP
  746. The following commands are available:
  747. .TP
  748. \fB@include\fR \fIpath\fR
  749. Include the contents of another file, specified via its full path.
  750. If the specified file does not exist, an error is produced.
  751. .TP
  752. \fB@include\-opt\fR \fIpath\fR
  753. As for \fB@include\fR, but produces no error if the named file does not exist.
  754. .\"
  755. .SH EXAMPLES
  756. .LP
  757. Here is an example service description for the \fBmysql\fR database server.
  758. It has a dependency on the \fBrcboot\fR service (not shown) which is
  759. expected to have set up the system to a level suitable for basic operation.
  760. .sp
  761. .RS
  762. .nf
  763. .gcolor blue
  764. .ft CR
  765. # mysqld service
  766. type = process
  767. command = /usr/bin/mysqld --user=mysql
  768. logfile = /var/log/mysqld.log
  769. smooth-recovery = true
  770. restart = false
  771. depends-on = rcboot # Basic system services must be ready
  772. .ft
  773. .gcolor
  774. .RE
  775. .fi
  776. .LP
  777. Here is an examples for a filesystem check "service", run by a script
  778. (\fI/etc/dinit.d/scripts/rootfscheck.sh\fR).
  779. The script may need to reboot the system, but the control socket may not have been
  780. created, so it uses the \fBpass-cs-fd\fR option to allow the \fBreboot\fR command
  781. to issue control commands to Dinit.
  782. It runs on the console, so that output is visible and the process can be interrupted
  783. using control-C, in which case the check is skipped but dependent services continue to start.
  784. .sp
  785. .RS
  786. .nf
  787. .gcolor blue
  788. .ft CR
  789. # rootfscheck service
  790. type = scripted
  791. command = /etc/dinit.d/scripts/rootfscheck.sh
  792. restart = false
  793. options = starts-on-console pass-cs-fd
  794. options = start-interruptible skippable
  795. depends-on = early-filesystems # /proc and /dev
  796. depends-on = device-node-daemon
  797. .ft
  798. .gcolor
  799. .fi
  800. .RE
  801. .sp
  802. More examples are provided with the Dinit distribution.
  803. .\"
  804. .SH AUTHOR
  805. Dinit, and this manual, were written by Davin McCall.
  806. $$$dnl