NEWS 29 KB

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