mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-28 22:35:12 -02:30
* Add for docker system units:
ExecReload=/bin/kill -s HUP $MAINPID
Delegate=yes
KillMode=process.
* Add missed DOCKER_OPTIONS for calico/weave docker systemd unit.
* Change Requires= to a less strict and non-faily Wants=, add missing
Wants= for After=.
* Align wants/after in a wat if Wants=foo, After= has foo as well.
* Make wants/after docker.service to ask for the docker.socket as well.
* Move "docker rm -f" commands from ExecStartPre= to ExecStopPost=.
hooks to ensure non-destructive start attempts issued by Wants=.
Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
17 lines
426 B
Django/Jinja
17 lines
426 B
Django/Jinja
[Unit]
|
|
Description=Weave Network
|
|
Documentation=http://docs.weave.works/weave/latest_release/
|
|
Wants=docker.service docker.socket
|
|
After=docker.service docker.socket
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/weave.env
|
|
ExecStartPre={{ bin_dir }}/weave launch-router \
|
|
$WEAVE_SUBNET \
|
|
$WEAVE_PEERS
|
|
ExecStart=/usr/bin/docker attach weave
|
|
ExecStop={{ bin_dir }}/weave stop-router
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|