gluster / glusterd2

[DEPRECATED] Glusterd2 is the distributed management framework to be used for GlusterFS.
GNU General Public License v2.0
167 stars 82 forks source link

Please fix systemd depency to rpcbind #1509

Open zem opened 5 years ago

zem commented 5 years ago

Hi, you have an unneeded depency to rpcbind service in your systemd unit file:

[Unit]
Description=GlusterD2, the management service for GlusterFS (pre-release)
Requires=rpcbind.service
After=network.target rpcbind.service
Before=network-online.target
Conflicts=glusterd.service

Please change this to:

[Unit]
Description=GlusterD2, the management service for GlusterFS (pre-release)
After=network.target
Before=network-online.target
Conflicts=glusterd.service

As rpcbind is only needed if you want to access glusterfs via nfs, which is as far as I am aware ganeschas job. The depency opens an unneeded port for an unneeded service which leads to unneeded security risks.

regards

Hans

Madhu-1 commented 5 years ago

CC @kshlm