mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
7975ce009a
We actually want salt-master processes in the same control group to be
terminated and this was only introduced to fix the 'minion upgrades
itself' problem, which applies to salt-minion, but not to salt-master.
This change was introduced in d288539
to fix #29295, which discusses the
need to include 'KillMode=process' for the salt-minion on Debian
systems.
15 lines
248 B
Desktop File
15 lines
248 B
Desktop File
[Unit]
|
|
Description=The Salt Master daemon
|
|
After=network.target
|
|
|
|
[Service]
|
|
EnvironmentFile=/etc/default/salt-master
|
|
LimitNOFILE=16384
|
|
Type=simple
|
|
NotifyAccess=all
|
|
ExecStart=/usr/bin/salt-master
|
|
Restart=$RESTART
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|