Procházet zdrojové kódy

Merge pull request #8924 from joshuaboniface/fix-postinst

Correct systemd dynamic directory
Joshua M. Boniface před 2 roky
rodič
revize
b80b50437c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      debian/postinst

+ 1 - 1
debian/postinst

@@ -83,7 +83,7 @@ fi
 # End automatically added section
 # End automatically added section
 # Automatically added by dh_installinit
 # Automatically added by dh_installinit
 if [[ "$1" == "configure" ]] || [[ "$1" == "abort-upgrade" ]]; then
 if [[ "$1" == "configure" ]] || [[ "$1" == "abort-upgrade" ]]; then
-  if [[ -d "/run/systemd/systemd" ]]; then
+  if [[ -d "/run/systemd/system" ]]; then
     systemctl --system daemon-reload >/dev/null || true
     systemctl --system daemon-reload >/dev/null || true
     deb-systemd-invoke start jellyfin >/dev/null || true
     deb-systemd-invoke start jellyfin >/dev/null || true
   elif [[ -x "/etc/init.d/jellyfin" ]] || [[ -e "/etc/init/jellyfin.conf" ]]; then
   elif [[ -x "/etc/init.d/jellyfin" ]] || [[ -e "/etc/init/jellyfin.conf" ]]; then