cross-posted from: https://reddthat.com/post/21668140

I have a VPN daemon that needs to run before the client will work. Normally, this would have been set up automatically by its install script, but the system is immutable.

I’ve created the systemd service via sysyemctl edit --force --full daemon.service with the following parameters:

[Unit] 
Description=Blah
After=network-online.target

[Service]
User=root
Group=root
ExecStart=/usr/bin/env /path/to/daemon

[Install]
WantedBy=multi-user.target

I’ve verified that the daemon is actually executable, and it runs fine when I manually call it via sudo daemon. When I try to run it with sudo systemctl enable --now daemon.service, it exits with error code 126.

What am I missing?

Edit: Typo, and added the relevant user and group to the Service section. Still throwing a 126.

Solution: the system wanted /usr/bin/env in ExecStart to launch the binary. The .service file above has been edited to show the working solution.

  • Successful_Try543
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    3 days ago

    Is that necessary for processes running as root? AfaIk, root is default.

    Keywords should be in CamelCase format, thus the space in Wanted By is wrong.

    • nhowell77@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      3
      ·
      3 days ago

      Honestly can’t believe I completely missed the space in Wanted By. This is likely the bigger culprit to the failed to run error. Poster above me is correct should read

      WantedBy

    • Telorand@reddthat.comOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      3 days ago

      Foiled by autocorrect! There’s no space in the original file, and I’ve edited my post to reflect that.