mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
35dcaadc8e
https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/ says: network.target has very little meaning during start-up. [...] Whether any network interfaces are already configured when it is reached is undefined. [...] network-online.target is a target that actively waits until the ne[t]work is "up", CTDB expects to be able to bind a socket to a node address and expects interfaces for public IP addresses to exist. CTDB also doesn't expect time to jump, so also wait until time is synchronised. BUG: https://bugzilla.samba.org/show_bug.cgi?id=12255 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Steve French <sfrench@samba.org> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Tested-by: Steve French <sfrench@samba.org>
16 lines
330 B
Desktop File
16 lines
330 B
Desktop File
[Unit]
|
|
Description=CTDB
|
|
After=network-online.target time-sync.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
LimitCORE=infinity
|
|
PIDFile=/run/ctdb/ctdbd.pid
|
|
ExecStart=/usr/sbin/ctdbd_wrapper /run/ctdb/ctdbd.pid start
|
|
ExecStop=/usr/sbin/ctdbd_wrapper /run/ctdb/ctdbd.pid stop
|
|
KillMode=control-group
|
|
Restart=no
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|