286

Let's say I write a mine.service file. Then I use systemctl enable mine.service.

If I later decide to edit mine.service, do I have to tell systemd that mine.service was changed? If so, how do I do that?

425nesp
  • 3,132

2 Answers2

350

After you make changes to your unit file, you should run systemctl daemon-reload, as outlined here.

daemon-reload
Reload systemd manager configuration. This will rerun all generators (see systemd.generator(7)), reload all unit files, and recreate the entire dependency tree. While the daemon is being reloaded, all sockets systemd listens on behalf of user configuration will stay accessible.

You can then restart (or reload) your service as you desire with

systemctl restart your-service-name

(daemon-reload won't reload/restart the services themselves, just makes systemd aware of the new configuration)

hwjp
  • 398
GregL
  • 9,870
40

As an addition to the answer above: In case you changed something in the [Install] directive, you may need to run sudo systemctl reenable YOURUNITFILE in order to recreate the symlinks in the .target directories.