a56d9de502
* Add restart for weave service unit * Reuse docker_bin_dir everythere * Limit systemd managed docker containers by CPU/RAM. Do not configure native systemd limits due to the lack of consensus in the kernel community requires out-of-tree kernel patches. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
18 lines
489 B
Django/Jinja
18 lines
489 B
Django/Jinja
[Unit]
|
|
Description=Weave Network
|
|
Documentation=http://docs.weave.works/weave/latest_release/
|
|
Wants=docker.socket
|
|
After=docker.service docker.socket
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/weave.env
|
|
ExecStartPre=-{{ docker_bin_dir }}/docker rm -f weave
|
|
ExecStartPre={{ bin_dir }}/weave launch-router \
|
|
$WEAVE_SUBNET \
|
|
$WEAVE_PEERS
|
|
ExecStart={{ docker_bin_dir }}/docker attach weave
|
|
ExecStop={{ bin_dir }}/weave stop
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|