• xcutie
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    9 months ago

    I find everything so complicated with systemd.

    SysV was just intuitive for me and my knowledge. There was just one directory with all the startup scripts in it. And they were run in their alphanumerical ordner. Just that simple. If I wanted to change the order in which the scripts started, I just had to rename the file. You don’t want a script to run at all? Just remove it.

    I assume, systemd has many advantages for a knowledged user. But for me, it still is just a hassle.

    • flying_sheep@lemmy.ml
      link
      fedilink
      arrow-up
      10
      ·
      9 months ago

      I haven’t had to debug a bash script since systemd became a thing, so I have a vastly different experience from you.

        • flying_sheep@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          9 months ago

          Never really, because they don’t contain logic. You craft a command line and stuff works.

          The problem with sysv was that almost all of the logic lived in the scripts. They all worked slightly different and all the duplication introduced bugs. Systemd has APIs that take over all the duplicated stuff and implement it once. Bugs have to get fixed once only.

    • Jimbob0i0@lemmy.world
      link
      fedilink
      arrow-up
      8
      ·
      9 months ago

      And what happened if one of those scripts failed?

      How did your express a dependency of a service on data being mounted?

      Did you ever have to face debugging failing networking via scripts?

      • xcutie
        link
        fedilink
        English
        arrow-up
        4
        ·
        9 months ago

        I just debuged it like every other of my scripts that failed. Again, I didn’t need any special knowledge of the init process, just general (and for me: very limited) knowledge.

        The answer to your other questions: I don’t thing I ever did that.

    • Phen@lemmy.eco.br
      link
      fedilink
      arrow-up
      2
      ·
      9 months ago

      I think the main difference is that one option is easier for the end user to occasionally take a look at what’s happening and debug without needing much context or previous knowledge, while the other is much easier for the actual maintainer to actually keep the thing working properly and predictably, as well as supporting every sort of edge case for their users in advance.

      An exaggerated stupid analogy: “back in the day we had horse carts and if it wasn’t moving we could just look at the tires to check if they were stuck in a hole or blocked by some rock, but now with cars there are so many things going on that the tires depend on some internal parts that are connected to an engine that depend on some fuel and there are so many elements that can go wrong in-between that often if the car is not moving it requires someone with very specific expertise to diagnose”

      (analogy is extra stupid because the horse cart is by nature inferior to the car and this is not the case with the init files and systemd, analogy would work better if the cart still had engines and fuel but that operated with the same simplify as the carts tires).