You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
544 B
16 lines
544 B
[Unit] |
|
Description=GlusterFS brick processes (stopping only) |
|
After=network.target glusterd.service |
|
|
|
[Service] |
|
Type=oneshot |
|
# glusterd starts the glusterfsd processed on-demand |
|
# /bin/true will mark this service as started, RemainAfterExit keeps it active |
|
ExecStart=/bin/true |
|
RemainAfterExit=yes |
|
# if there are no glusterfsd processes, a stop/reload should not give an error |
|
ExecStop=/bin/sh -c "/bin/killall --wait glusterfsd || /bin/true" |
|
ExecReload=/bin/sh -c "/bin/killall -HUP glusterfsd || /bin/true" |
|
|
|
[Install] |
|
WantedBy=multi-user.target
|
|
|