• Johanno
    link
    fedilink
    164 months ago

    I am fine with systemd. It works. It is more complicated than init.d

    Before you copied some random file you edited and put it in init.d and it worked. Now you copy some systemd services file into systemd and run enable and start and it doesn’t work because you don’t know what you are doing.

    I didn’t know what I was doing in init.d too but now I have to learn systemd services. Once you know a bit it will work then (probably)

    • @ebc@lemmy.ca
      link
      fedilink
      254 months ago

      I disagree. Before I had to copy and edit a huge-ass script (100+ lines) in init.d where 80% of it was concerned with PID files. I just want to start a process on boot, why is it so hard?

      Now I can look at the documentation and write a simple unit file myself. It’s like 4 lines.

    • @whoelectroplateuntil@sh.itjust.works
      link
      fedilink
      13
      edit-2
      4 months ago

      init.d wasn’t really what you’d call an “init” “system.” It was shell + conventions about how to write shell scripts to manage each service. It effectively offloaded most of the work people wanted an init system/service supervisor to do onto developers that just needed to ship a system service. To be honest, it was insane. Templates/patterns/best practices emerged, but at the end of the day, init.d was just shell, and it caused tons of problems.

      The extra complexity of systemd is in exchange for dependency management, service supervision, tons of things that are important/desirable for sysadmins/developers today, but are all far outside the scope of init. I’d much rather cope with the extra complexity of systemd in exchange for being able to write an actual service definition file.

    • @taladar@sh.itjust.works
      link
      fedilink
      104 months ago

      Before you copied some random file you edited and put it in init.d and it worked.

      Before you copied some random file you edited and put it in init.d and it appeared to be working but then failed in random ways the first time you restarted, the first time you rebooted, the first time you restarted it via sudo instead of directly as root since some environment variable differed,…

      So really it only appeared to be working in my experience because you had no real way to check.

      • Johanno
        link
        fedilink
        34 months ago

        I mean it should be obviously clear that copying random files isn’t sth. You should do anyways

        • @taladar@sh.itjust.works
          link
          fedilink
          44 months ago

          Well, in this context what we are talking about is some random init script from some other service because nobody wants to write all that crap from scratch every time.