2
0

dinit-service.5.m4 42 KB

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