Просмотр исходного кода

Merge pull request #6390 from qzhuyan/fix/william/systemd-restart-on-failure

build(deb): fix postrm for checking systemd
William Yang 4 лет назад
Родитель
Сommit
3fdc075b24
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      deploy/packages/deb/debian/postrm

+ 1 - 1
deploy/packages/deb/debian/postrm

@@ -56,7 +56,7 @@ case "$1" in
                 rm -r /usr/lib/emqx
         fi
 
-        if pidof systemd; then
+        if systemctl status --no-pager; then
           systemctl disable emqx;
           rm -f /etc/systemd/emqx.service
         fi