ExecReload
ExecReload is a directive used in systemd service unit files. It specifies the command that systemd should execute when a reload of the service is requested, typically via systemctl reload <service>. The purpose of this directive is to allow a running daemon to re-read and apply its configuration without stopping or fully restarting.
When a reload is performed, systemd runs the program defined by ExecReload in the [Service] section. The
Notes and behavior: ExecReload does not implicitly restart the service; it should implement a non-destructive reload
See also: systemd, systemctl, unit file, ExecStart, ExecStop, Restart.