NEWS 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. == Version ??? (upcoming)
  2. ...
  3. Changes:
  4. * For user instances, if the XDG_CONFIG_HOME environment is set, dinit now looks for services in
  5. $XDG_CONFIG_HOME/dinit.d/ in addition to $HOME/.config/dinit.d (if they are different paths).
  6. Implemented by Oliver Amann.
  7. Note that Dinit does not, and most likely never will, fully support the (flawed) XDG Base
  8. Directory Specification.
  9. New features:
  10. * dinitcheck now supports an "online" mode of operation (--online, -n) in which it will query the
  11. service directories and service manager environment from a running dinit instance.
  12. * In dinit-monitor: support reporting initial service status, and using alternative
  13. (user-supplied) wording for status texts. Thanks to James Knippes (helican).
  14. * For service descriptions, a new form of variable expansion is available. When written as
  15. "$/NAME" (or "$/{NAME}") the variable value undergoes word splitting and whitespace
  16. collapse. This is convenient for allowing optional command line arguments to be specified via
  17. the environment, for example.
  18. Fixes:
  19. * Fix a latent control protocol processing issue (does not affect dinitctl).
  20. * Various minor improvements to error messages, designed to provide a better end-user experience.
  21. * Fixes to minor build issues in Meson build (Mobin Aydinfar).
  22. == Version 0.17.1 (beta release #2)
  23. This is a 2nd beta release to follow up from 0.17.0. The changes are mostly minor; they include
  24. some bug fixes, and some behavioural changes, that are listed below; there are also new options
  25. for controlling logging.
  26. New features:
  27. * The console log level, and primary log facility (syslog or logfile) log level, can now be
  28. specified via the new "--console-level" and "--log-level" options. See the documentation
  29. in the dinit(8) man page.
  30. Changes:
  31. * The log file is opened immediately when starting even as a system manager, if possible. This
  32. can make it easier to debug boot issues.
  33. * The working directory for a service is now the directory containing the service description.
  34. This can simplify specifying configuration files/script locations etc. Implemented by
  35. Daniel Kolesa.
  36. * The env-file (environment) path for a service is now relative to the service directory
  37. containing the service description. Implemented by Daniel Kolesa.
  38. * Failure to open the env-file (environment) specified for a service is now treated as a hard
  39. error (and will prevent a service starting). Implemented by Mobin Aydinfar.
  40. Fixes:
  41. * A service that restarted too often, too quickly but which was a dependency of another service
  42. also set to restart did not trigger the restart limit check; this has been fixed.
  43. * Process services with the smooth-recovery option and with readiness notification did not check
  44. that readiness notification was received after a smooth restart.
  45. * Don't report ECONNRESET errors in control connections. These indicate that the client closed
  46. the connection (possibly by terminating) and do not need to be reported. This prevents a
  47. spurious warning on shutdown.
  48. * Give an error when a service is specified as its own output consumer (avoids crash).
  49. Thanks to Mobin Aydinfar.
  50. * A better effort to make the symlink created during a "dinitctl enable" operation actually point
  51. to the enabled service. (This has no effect on operation).
  52. * Various command line switches which require an additional argument (eg -d, -l) now check that
  53. the argument supplied is now empty.
  54. * configure script improvements/fixes by Mobin Aydinfar, and by Roze061
  55. == Version 0.17.0 (beta release #1)
  56. Thank you to several new sponsors, as well as existing sponsors, for supporting this release.
  57. Current sponsors include github users: brentfrow, brazeon, and q66 (Daniel Kolesa, author of
  58. Chimera Linux). Development of Dinit has also received financial support from Artix Linux.
  59. I am grateful for all the support, both financial and otherwise, that has been received.
  60. Special thanks to Mobin Aydinfar, who has taken on secondary maintainer duties in the lead-up to
  61. this release, including many valuable contributions to getting CI infrastructure up-and-running.
  62. New features:
  63. * A "log-type" service setting allows for control over how a service output is processed. A new
  64. "buffer" type allows capturing service output to an in-memory buffer; this may be useful for
  65. service started early, before any logging daemon is available. The buffer contents can be
  66. inspected via a new dinitctl subcommand, "catlog". See dinit-service(5) and dinitctl(8). Other
  67. log-type settings are "none", "file" (log to file as in previous versions) and "pipe" which
  68. allows piping output to another (process) service - read on for details.
  69. * Output from a service process can now be chained to another process (in another service).
  70. This allows one service to act as a logging agent for another, for example. The consumer
  71. service need not be started at the same time as the producer process; the pipe between them can
  72. be created early if needed, and will persist if either end dies (so restarting a logging agent
  73. without losing log messages should be possible in theory). The "consumer-of" service setting,
  74. specified in the consumer, creates the connection between the services; the producer must have
  75. log-type of "pipe".
  76. * New "triggered" service type, similar to "internal" except that it requires an external
  77. trigger before it will start (start of a triggered service is delayed until the external
  78. trigger is received). One potential use is to start services after hardware device nodes become
  79. available (eg, start dhcp client on a network interface once it is available).
  80. * New "dinictl" subcommand, "signal", to send a signal to a service process. See dinitctl(8).
  81. Implemented by James Knippes and Mobin Aydinfar.
  82. * New "kill-all-on-stop" service option will cause dinit to kill all (other) processes just
  83. before stopping the service. This can be used to ensure a cleaner system state and that
  84. filesystems can be unmounted (for example). Use with care; see dinit-service(5) for details.
  85. * The "shutdown" utility now runs (if present) user-provided shutdown hooks; see shutdown(8) for
  86. details.
  87. * New service settings to control service logfile ownership and permissions: logfile-permissions,
  88. logfile-uid, and logfile-gid. Note that these have default values, which results in a change in
  89. behaviour from previous versions even if they are not specified in a service description (i.e.
  90. the logfile ownership and permissions are now always set).
  91. * A new "--offline" option for dinitctl enables using "enable" and "disable" subcommands to
  92. enable/disable services when dinit is not running.
  93. * "before" and "after" ordering requirements in service descriptions no longer force the named
  94. service to be loaded. This means that a service can be "before" another service even if the
  95. other service might not be installed, for example.
  96. * New "dinitctl" subcommands "is-started" and "is-failed", to test for specific service statuses
  97. (intended to be useful in scripts, for example). Contributed by Daniel Kolesa.
  98. * The "dinitctl" utility now supports the "--use-passed-cfd" argument (as for shutdown).
  99. * A "configure" script to generate suitable build configuration is included. It is used by
  100. default when building on not-recognised systems. Contributed by Mobin Aydinfar.
  101. * Meson build system added (as an alternative to the existing makefile-based build) by Mobin
  102. Aydinfar.
  103. Changes:
  104. * The default is now to restart services automatically (previously required "restart = yes").
  105. * The permissions/ownership for logfiles has been reworked, see details in "New features" above.
  106. * Services which specify "run-as" to run as a different user now run with the supplementary
  107. groups of that user (this can be disabled at build time by setting USE_INITGROUPS=0).
  108. Thanks to Daniel Kolesa.
  109. * Environment variables from the service-specific environment ("env-file" setting) can now be
  110. substituted in many service settings. Variable expansion now supports a limited subset of shell
  111. expansions (such as "$(NAME:-word}" and "${NAME:+word}). Behaviour is not identical to shell;
  112. see documentation. Implemented by Daniel Kolesa.
  113. * Environment variable expansion in service descriptions is no longer optional. The "sub-vars"
  114. load option no in a service description no longer has any effect, and "no-sub-vars" is no
  115. longer recognised at all.
  116. * "/run/dinit.d" is now included in the default set of directories search for service description
  117. files (in system mode).
  118. * Some service defaults, including automatic restart, can now be configured at build time
  119. (contributed by Mobin Aydinfar).
  120. Fixes:
  121. * A bug in Dasynq which caused out-of-bounds vector access in dinit on shutdown has been fixed.
  122. * Fixed a dinit bug that could cause communication on a control socket to block indefinitely,
  123. which could theoretically cause dinitctl to hang (no cases of dinitctl hanging have been
  124. reported by users!).
  125. == Version 0.16.1
  126. (Bugfix release for 0.16.0)
  127. This release contains bug fixes for the previous release.
  128. Changes:
  129. * Fix issue where dependencies could stop before there dependents had stopped.
  130. * Fix issue where startup could fail if control socket location was not writable when
  131. dinit started.
  132. * Fix for dinitctl crashing due to an exception when a service description contained
  133. certain syntactical errors.
  134. * Fix nonsensical (but harmless) error message when loading services (when the service
  135. description is found in a directory that is not the first directory searched)
  136. (Daniel Kolesa).
  137. * Fix issue with example rootfscheck.sh script (Mobin Aydinfar).
  138. * Minor build system improvements (Daniel Kolesa).
  139. * Minor documentation updates.
  140. == Version 0.16.0
  141. (Alpha release #8)
  142. This release contains some new features and bug fixes.
  143. Changes:
  144. * "before" and "after" relationships can now be specified for services. These can be used to
  145. control startup order without creating explicit dependencies between services.
  146. * The "restart" command of dinitctl will now also restart hard dependents if the "--force"
  147. option is used (previously the "--force" option was ignored, and the command would fail if
  148. a dependent blocked the restart). Changes contributed by Duncan Overbruck.
  149. * The "-t" (or "--service") command-line option has been implemented to allow unambiguously
  150. specifying that the next argument is a service name. This can be used when booting Linux to
  151. select a target service or services (dinit otherwise ignores potential service names in this
  152. scenario, since the Linux kernel sometimes passes through kernel options to init).
  153. Implemented by Mobin Aydinfar.
  154. * The dinit daemon itself supports S6-compatible readiness notification (for when run under
  155. another supervision system or controlling process). The "-r <fd>" command line argument
  156. specifies the file descriptor to write the notification to. Contributed by Daniel Kolesa.
  157. * Environment files (including per-service file as specified by env-file service setting):
  158. support for commands !clear, !unset and !import. These give more flexibility in how much of the
  159. original environment to expose to service processes. See the dinit(8) man page for more
  160. information.
  161. * The dinitctl utility provides more information if a service fails to start (avoiding the need
  162. to query the status separately or check logs to get the same information).
  163. * Fix bug with cgroup root path extraction where the path was longer than 64 characters (found
  164. by Github continuous integration builds as implemented by Mobin Aydinfar).
  165. * Fix bad pointer bug manifesting with very short command strings (reported by Duncan Overbruck).
  166. * Reloading a service now checks for (and disallows) cyclic dependencies.
  167. * Minor fix to service examples, contributed by Firas Khalil Khana.
  168. * Various minor build/install fixes.
  169. Other:
  170. * Github continuous integration was set up by Mobin Aydinfar
  171. == Version 0.15.1
  172. (Alpha release #7)
  173. This contains minor fixes for the previous release.
  174. Changes:
  175. * Remove extra newline which was printed after service description error log messages.
  176. * Install dinit-monitor as part of "make install".
  177. == Version 0.15.0
  178. (Alpha release #6)
  179. This release contains bug fixes and new features.
  180. Changes:
  181. * New "dinit-monitor" command can be used to perform notifications (via an external command, such
  182. as notify-send) when a service changes state. This is primarily intended for users running dinit
  183. in "user mode" rather than for system instances of dinit, although it works in either case. See
  184. the dinit-monitor(8) manual page for details.
  185. * Support on Linux for running service processes in a cgroup, via the "runs-in-cgroup" service
  186. setting. Cgroups must be mounted/created outside of dinit (eg via an early service), there is no
  187. support for this in dinit itself. See the dinit-service(5) manual page for details.
  188. * "dinitctl enable", "dinitctl disable" and "dinitctl rmdep" now give better feedback in various
  189. situations. For example, "dinitctl disable" will warn if a disabled service has other
  190. dependents (which may cause it to start anyway).
  191. * When parse errors occur in service description files, the relevant line number should now be
  192. reported (by dinitcheck, or in the dinit log).
  193. * Environment variable substitution in command lines is now performed for the "stop-command"
  194. setting in exactly the same way as for the "command" setting. Previously, by oversight,
  195. substitution was not performed for the "stop-command" setting.
  196. * Fix: start timeout was not being honoured for service restarts.
  197. == Version 0.14.0
  198. (Alpha release #5)
  199. This release contains bug fixes and a new feature.
  200. Changes:
  201. * "stop-command" service parameter can now be applied to process and bgprocess services. If
  202. specified for these service types, the specified command is used to stop the service.
  203. * "dinitctl status" now reports launch stage and error for services which failed to execute.
  204. Example output:
  205. $ src/dinitctl status mpd
  206. Service: mpd
  207. State: STOPPED (could not be launched)
  208. Stage: executing command
  209. Error: No such file or directory
  210. * Fixes bug where "dinitctl status" command would sometimes report an error.
  211. * Fixes a (situational, unlikely) bug where a bgprocess state could get stuck.
  212. * Fixes a potential memory corruption / crash bug occurring in out-of-memory situations when
  213. adding a dependency to a service (via "dinitctl reload" or "dinitctl add-dep").
  214. == Version 0.13.0
  215. NOTE: This release has some minor backwards-incompatible changes. Please read
  216. these notes carefully.
  217. This release includes changes contributed by Daniel Kolesa.
  218. Changes:
  219. * A new dinitctl subcommand, "status", can be used to query extended status
  220. information for an individual service.
  221. * The default directory for user services has moved to ~/.config/dinit.d
  222. (rather than ~/dinit.d).
  223. * Some service settings now expand environment variables (given in the form
  224. $VARNAME, in any location that it appears within the setting value). The
  225. affected settings are: socket_path, logfile, env_file, working_dir and
  226. pid_file.
  227. * The variable substitution in command lines (which remains dependent on the
  228. 'sub-vars' load option, for now) uses the same substitution rules and logic
  229. as for other settings. In particular, this means that a variable expansion
  230. can occur as part of a command line argument (previously it always replaced
  231. whole arguments).
  232. * The dinitctl program now uses the value of the DINIT_SOCKET_PATH
  233. environment variable, if set, as the default control socket path. (If not
  234. set, behaviour is the same as for previous versions).
  235. * A "poweroff" symlink for shutdown will be installed alongside other symlinks
  236. ("reboot", "halt" etc). This allows integration in environments that expect
  237. such a command to be available.
  238. == Version 0.12.0
  239. This is the third Alpha release, issued as a follow-up to the previous Alpha
  240. releases. It contains a number of minor improvements.
  241. Changes:
  242. * A new "--ignore-unstarted" option to dinitctl, causing it to return success
  243. when attempting to restart a service which is not started (including when
  244. no service description for it exists).
  245. * Add an "always-chain" service option, so that chaining to another service
  246. (as specified via the "chain-to" setting) becomes unconditional.
  247. Feature contributed by Alexander Sherikov.
  248. * Add support for multiple service directories to be specified (via multiple
  249. --services-dir options).
  250. Feature contributed by Alexander Sherikov.
  251. * Improve control socket creation / stale socket removal. Previously, a
  252. system instance would unconditionally unlink a pre-existing socket file,
  253. and non-system instances would fail if a pre-existing socket file existed
  254. (even if it was not active, i.e. no dinit instance was accepting
  255. connections on it). Now, if there is an existing socket file, dinit will
  256. attempt to connect to it, and will refuse to start if this succeeds, or
  257. unlink it otherwise. Unfortunately this cannot be done atomically, so it
  258. should not be relied on as a general means to prevent more than one
  259. instance of dinit from starting.
  260. == Version 0.11.0
  261. This is a second Alpha release, issued as a follow-up to the previous Alpha
  262. release. It contains some minor bugfixes and a number of other improvements
  263. (all detailed below).
  264. Important: the default system socket location has changed. If version 0.11 of
  265. shutdown, halt etc are installed, they may not be able to communicate with the
  266. already-running (v0.10.0 or prior) dinit daemon. In this case, to shut the
  267. system down, use:
  268. dinitctl -p /dev/dinitctl shutdown
  269. Important: the "no-sigterm" option has been removed. To specify that no
  270. SIGTERM signal should be sent to a process to stop it, specify a different
  271. signal (or "none") via the "term-signal" setting. It is no longer possible to
  272. have both SIGTERM and an additional signal sent, but the settings should be
  273. less confusing.
  274. Changes:
  275. * dinit and dinitctl now support --version command line argument.
  276. * Improved diagnostic message if a service description file exists but
  277. can't be opened.
  278. * Default system socket location has changed from /dev/dinitctl to
  279. /run/dinitctl (see note above).
  280. * Active status is indicated in "dinitctl list" output. Square brackets
  281. indicate a service is marked active (i.e. it has been explicitly started)
  282. and curly brackets indicate a service that has started due to being the
  283. dependent of an active service.
  284. * The "dinitcheck" utility now performs a number of additional checks.
  285. * Better feedback is provided for various "dinitctl" commands. The affected
  286. service name is reported for any status update.
  287. * Fixed bug processing rlimit settings.
  288. * Fixed issue with interpreting unwanted command line parameters passed from
  289. linux kernel as service names.
  290. == Version 0.10.0
  291. This release is a major step towards a version 1.0 release. It should be
  292. considered an Alpha release; core functionality is complete but some
  293. ancillary functionality is still unimplemented. It is believed to be of
  294. good quality but bugs may be present.
  295. * When not running as system init, dinit will now fail to start if the control
  296. socket cannot be opened. In particular this should prevent accidentally
  297. starting multiple instances of dinit (and all services).
  298. * Services of type bgproc will no longer load if the pid-file setting is not
  299. supplied. Previously such services could be started, but stopping them would
  300. leave the process running.
  301. * Re-worked manual service stop (via command). Previously, manually stopping
  302. a service would inhibit automatic restart of the service, but not of its
  303. dependents; this meant that the service might still restart due to a
  304. dependent. In this version, manually stopping a service inhibits restart
  305. of the service and all dependents (note that the --force option is required,
  306. as previously, in order to stop a service which has active dependents).
  307. * Re-worked soft dependency handling slightly. A dependency now (re-)attaches
  308. to its dependent if it starts (or starts again) while the dependent is
  309. started. This leads to overall more consistent behaviour (and is simpler
  310. to implement properly).
  311. * Re-worked pinning. A service that is pinned stopped can now prevent dependents
  312. from starting (the behaviour is the same as if the service failed to start).
  313. * Support start-timeout setting for process services. Previously this setting
  314. was ignored for such services. It is mostly useful for services which also
  315. have readiness notification configured (since otherwise, a process service is
  316. considered started as soon as it begins execution).
  317. * If a process-based service fails to restart, restart of dependent services
  318. will be inhibited. This should prevent repeated attempts to launch a failing
  319. process caused by a restarting dependent service.
  320. * Fixed some cases where service target state would not be set correctly. This
  321. could cause output of "dinitctl list" to incorrectly show that a service would
  322. restart after stopping, when in fact it would remain stopped.
  323. * Fixed various corner-case bugs in service management.
  324. == Version 0.9.1
  325. This is a bug-fix release.
  326. * Fix a service getting stuck in the "stopping" state, if a dependent is
  327. set to auto-restart ("restart = true").
  328. == Version 0.9.0
  329. This release includes some new functionality and a rework of the chain-load
  330. mechanism.
  331. * The service specified via the "chain-to" setting will now only be started
  332. if the initiating service completes successfully, i.e. if it terminates
  333. normally (with an exit code of 0) and only if it is not manually stopped.
  334. * New option "--container" (-o) inhibits system management functions (such
  335. as machine shutdown/restart) that are normally enabled when dinit runs as
  336. process ID 1. A complementary "--system-mgr" (-m) option enables system
  337. management (even when not running as PID 1).
  338. * Fixed pinned-started services stopping when released by a dependent
  339. service, instead of remaining in the started state, and some other bugs
  340. related to pinning. Some issues may remain to be fixed in a later release.
  341. == Version 0.8.2
  342. This is a bug-fix release.
  343. * Fixed group not being set correctly when "run-as" or "socket-uid" were used.
  344. * Fixed "dinitctl rm-dep" command
  345. * Fixed bug preventing shutdown when auto-restart services were configured
  346. * Fixed smooth recovery of bgprocess services
  347. == Version 0.8.1
  348. This is a bug-fix release.
  349. * Fixed crash on service load error.
  350. * Fixed an unchecked allocation leading to possible unexpected termination.
  351. * Fixed a slow memory leak (in the bundled Dasynq library).
  352. * Fixed --help option for "dinitcheck" not working.
  353. * Fixed badly formatted error message from process launch failure.
  354. * Fixed issue where log file would not always be flushed on exit.
  355. * Fixed "dinitcheck" crashing if service description could not be found.
  356. == Version 0.8.0
  357. This release includes major usability features.
  358. * New command "dinitcheck" checks service descriptions for errors (without attempting to load
  359. or start the service). Checks the named service(s) and any dependencies.
  360. * Service descriptions can now be reloaded, using "dinitctl reload <service-name>". This works
  361. for services which are started, with some restrictions, and for services which are stopped,
  362. and allows dependencies to be altered.
  363. * dinitctl now defaults to the system process socket location when run as root. This means that
  364. using '-s' is no longer necessary (it is still supported for backwards compatibility). A new
  365. '-u' option can be used to communicate with the user daemon, if there is one.
  366. == Version 0.7.0
  367. This release adds a minor feature, and includes a re-work of some base functionality
  368. (which should not affect most use cases).
  369. * dinitctl "restart" command added. Re-starts an already-running service without affecting
  370. activation or dependency links.
  371. * dinitctl "stop" command now requires a `--force` option if dependents of the specified
  372. service would also need to stop.
  373. * dinitctl "wake" command now reconnects dependency links from dependents of the specified
  374. service, and can only be used if at least one such dependent is started.
  375. == Version 0.6.1:
  376. This is a bug-fix release with several minor fixes:
  377. * Resource limits were not properly being set.
  378. * Prevent early termination when standard input is closed or set to a device which cannot
  379. be watched for input.
  380. * Control protocol fix, possibly not affecting any real usage.
  381. == Version 0.6.0:
  382. This release adds a number of minor features:
  383. * Better behaviour when boot fails. User can choose an action from reboot, resume boot process,
  384. start the "recovery" service, or power-off.
  385. * New service settings for limiting resources at the process level: "rlimit-nofile",
  386. "rlimit-core", "rlimit-data", "rlimit-addrspace". Both hard and soft limits can be set.
  387. See dinit-service(5) for details.
  388. * New "env-file" setting allows per-setting environment to be specified via a file. The file
  389. is re-read each time the service process is started.
  390. * Added a "--quiet" option to suppress console output from Dinit.
  391. * Dinit when run as a user daemon no longer logs via syslog. Logging to file can still be
  392. enabled via the "-l"/"--log-file" option.
  393. * Added a "--socket-path"/"-p" option to dinitctl, to specify the socket path for communication
  394. with the dinit daemon.
  395. A number of minor bugfixes and other improvements are also implemented. An integration test
  396. framework has been added with a small number of tests, to complement the existing unit tests.
  397. == Version 0.5.2:
  398. This is a bug-fix release for several minor issues which have been found in the preceding
  399. release (0.5.1).
  400. * Fix logging failure after log buffer becomes full.
  401. * Fix readiness-fd notification not immediately updating service states.
  402. * Fix use of old settings in sample configuration for Linux.
  403. * Re-create control socket file node if it "disappears". Should solve issues if root filesystem
  404. is mounted read-write on boot.
  405. * Fix potential issue with service launch failure for services using a fixed notification fd.
  406. == Version 0.5.1:
  407. This is a bug-fix release for several issues of varying severity which have been found in the
  408. preceding release.
  409. * Improved logging behaviour when a service runs "on console" for a very short time.
  410. * Fix for crash due to SIGALRM on OpenBSD.
  411. * Fixes for compiling with Musl C library.
  412. * Fix dinitctl "enable" and "disable" commands when path to service directory is absolute.
  413. * "termsignal" setting renamed "term-signal" and now supports "KILL" signal. "termsignal"
  414. is still supported for compatibility with existing service descriptions.
  415. * Other minor fixes.
  416. == Version 0.5.0:
  417. This version adds S6-compatible readiness notification support, and adds support for updating
  418. the "utmp" database when services start/stop (this functionality should be avoided if possible
  419. since the "utmp" database is mostly an historical artifact, and system support is often prone
  420. to issues which allow unprivileged users to prevent updates and deny or delay logins; however,
  421. utilities such as "who" may depend on the database being updated appropriately).
  422. Other changes:
  423. * Add "-u" command line option to force running dinit as a user instance.
  424. * Add a "chain-to" service property to better support recovery services.
  425. * Add a "shares-console" service option to allow running services "on the console" without having
  426. them own it exclusively.
  427. * Add "inittab-id" and "inittab-line" service settings for utmp support.
  428. * Minor bugfixes.
  429. == Version 0.4.0:
  430. This version focuses on being more "distribution friendly". It adds mechanisms to add and remove
  431. dependencies, either temporarily or persistently, between services without manual editing of
  432. service description files.
  433. Changes:
  434. * A new service description directive, "waits-for.d", allows specifying a directory for which the
  435. contents (filenames) are read as dependencies. This provides a convenient way to add and remove
  436. dependencies to service descriptions without editing the textual service description file.
  437. * dinitctl has new commands, "add-dep" and "rm-dep", to add or remove a dependency between
  438. services. The dependency is not persisted and won't survive a restart. Check the man page for
  439. details.
  440. * dinitctl has new commands, "enable" and "disable". These permanently enable/disable
  441. a service for some target ("boot" by default) by creating/destroying a symbolic link
  442. in the waits-for.d directory specified in the service description (and create/remove
  443. waits-for dependency dynamically). Check the man page for details.
  444. * A code style guide has been added (in the "doc" directory).
  445. * More tests, minor bugfixes.