There are comments by systemctl:
Your changes were just ignored.
Proper override should be something like this:
But I want to point out that TimeoutSec=900 is default value in the unit file (check /lib/systemd/system/netxms-server.service)
Code Select
### Editing /etc/systemd/system/netxms-server.service.d/override.conf
### Anything between here and the comment below will become the new contents of the file
...
### Lines below this comment will be discarded
Your changes were just ignored.
Proper override should be something like this:
Code Select
### Anything between here and the comment below will become the new contents of the file
[Unit]
After=network.target postgresql.service
TimeoutSec=900
... more overrides
### Lines below this comment will be discarded
But I want to point out that TimeoutSec=900 is default value in the unit file (check /lib/systemd/system/netxms-server.service)