dinit-service.5.m4 43 KB

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