Quote:
Originally Posted by
AdamW
This is extremely unfair,
This is my opinion.
Quote:
The manpages alone constitute sufficient conventional documentation.
Here's an example of how its manpages are self-contained, straight from systemd(1).
"For more information about the concepts and ideas behind systemd please refer to the Original Design Document (link).
Note that some but not all interfaces provided by systemd are covered by the Interface Stability Promise (link).
Units may be generated dynamically at boot and system manager reload time, for example based on other configuration files or parameters passed on the kernel command line. For details see the Generators Specification (link).
Systems which invoke systemd in a container or initrd environment should implement the Container Interface (link) or initrd Interface specifications (link), respectively."
Quote:
The boundaries and functions of systemd, udevd and journald are all perfectly well defined and documented. You can perfectly well obtain complete knowledge of this chain, foresee its behaviour, and debug it. The boundaries and behaviour are different from sysv, but they certainly meet your conditions.
Let's inspect the boundaries between systemd and udev for instance. udevd used to be separated from systemd. Then it got merged within it, with the authors promising that "nothing would change" as it was merely a matter of sharing code. Then it turned out that things would actually change, as udev would lose its build infrastructure and one would have to use systemd's one. Then it became apparent that one had to compile and install the whole systemd (and its gazillion dependencies, some of which not cleanly cross-compilable), then manually rip the udev binary from the resulting installation (binary which had in the meantime been renamed as systemd-udevd, an undocumented compatibility break). But the developers promised that running udev without systemd would always be possible. When somebody complained that having to rip a working executable image out of systemd wasn't exactly a nice solution, they were awarded with friendly responses such as:
"do what source distro's do best."
"pick mdev" or "stay on udev-182."
"Another option I'm hoping Gentoo uses is to standardize on systemd instead of dozen of half backed utilities to do the same things."
Then some time passed, and in case there was some doubt about the real intentions of the systemd+udev maintainers about "defining the boundaries" between the two, systemd developers reveal their true intentions:
"(Yes, udev on non-systemd systems is in our eyes a dead end, in case you haven't noticed it yet. I am looking forward to the day when we can drop that support entirely.)"
So much for the well-definedness of the boundaries and functions of udevd and systemd. But I actually was talking more generally about the big picture: I appreciate the difference between "a server that starts and stops processes" versus "a server that manages mount points, listens on sockets, writes the syslog, handles dbus, starts recurring processes, handles hardware devices". In particular, I like the former approach because I can study and understand most of it and its interactions with my system, whereas my limited intelligence has much more difficulty in doing the same for a complex and continuosly changing coalition of subsystems such as systemd. So for me and those like me, upstart is better.
Quote:
I have to say I tend to read this line of argument as 'I took the time to learn how the old way worked, and now I don't want to do it again'. Learning new stuff is a pain, yeah, but describing it as 'voodoo' is unwarranted. The 'fully automatic' way that devfs worked was just as much 'voodoo' to someone who was used to the previous method as udev's method is to you. More than anything, your perspective on what is perfectly comprehensible and sensible code and what is 'voodoo' depends on when you came in...
The "fully automatic" way that devfs worked was no voodoo. It wasn't more complex than the previous method. The previous method involved populating a directory on the root filesystem with all the device nodes one might think he would ever need. The devfs mothod required nothing: as the directory appeared just there, and that was it. It's not a matter of learning new things. It's a matter of changing from a model which required learning a few concepts to a model which requires learning ten times more concepts, is more cumbersome to use, and is less flexible in the end.
The primary source of workforce for OSS software is made up by grassroots users. Replacing simple systems with complex ones for no reason will create barriers to entry for those people. Making Linux workable only by distribution professionals will turn it into another OpenSolaris in the long run.
Quote:
This is a fairly inaccurate description of that whole kerfuffle.
Which point is inaccurate? Am I lying? Where exactly?
Quote:
So you hit a bug. Presumably it got fixed. I can't really discuss it in any more detail since I don't know anything about that specific case. But bugs happen...
Nobody is questioning the fact that bugs happen. I was just saying that if a software is released without even being compile-tested, a user might consider alternatives to it if they are available.
Quote:
The fact that projects are not buying into upstart is not a *good* thing for upstart, it indicates that they don't have confidence enough in that project to take advantage of the capabilities it offers. Why is it a good thing for upstart if upstart offers a native service format that provides extended capabilities, but few projects want to take advantage of that?
Because upstart requires writing "recipes" to manage services, so services don't have to be modified to take advantage of it. And I can't feel any difference in boot time when I run an upstart-based distribution versus a systemd-based one. Except that in the second one, the servers have become init-system specific, and it's more difficult to maintain.