Skip to content

Commit 7d2ee8b

Browse files
fix(systemd): unit file was missing the requires directive (#32)
This could cause the mgmtd to startup with only the loopback device advertised to other services. This also switches to use network-online.target instead of network.target, consistent with the BeeGFS 7 mgmtd.
1 parent e1e923a commit 7d2ee8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mgmtd/assets/beegfs-mgmtd.service

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[Unit]
22
Description=BeeGFS Management Server
33
Documentation=https://doc.beegfs.io
4-
After=network.target
4+
Requires=network-online.target
5+
After=network-online.target
56

67
[Service]
78
Type=notify

0 commit comments

Comments
 (0)