Procházet zdrojové kódy

systemd: fix qubes-mount-home path in cleanup script

HW42 před 7 roky
rodič
revize
5ab7e80306
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 1 1
      debian/qubes-core-agent.postinst
  2. 1 1
      rpm_spec/core-vm.spec

+ 1 - 1
debian/qubes-core-agent.postinst

@@ -132,7 +132,7 @@ case "${1}" in
         if [ -L /etc/systemd/system/sysinit.target.wants/qubes-random-seed.service ]; then
             systemctl --no-reload disable qubes-random-seed.service >/dev/null
         fi
-        if [ -L /etc/systemd/system/sysinit.target.wants/qubes-mount-home.service ]; then
+        if [ -L /etc/systemd/system/multi-user.target.wants/qubes-mount-home.service ]; then
             systemctl --no-reload disable qubes-mount-home.service >/dev/null
         fi
 

+ 1 - 1
rpm_spec/core-vm.spec

@@ -637,7 +637,7 @@ done
 if [ -L /etc/systemd/system/sysinit.target.wants/qubes-random-seed.service ]; then
     systemctl --no-reload disable qubes-random-seed.service >/dev/null
 fi
-if [ -L /etc/systemd/system/sysinit.target.wants/qubes-mount-home.service ]; then
+if [ -L /etc/systemd/system/multi-user.target.wants/qubes-mount-home.service ]; then
     systemctl --no-reload disable qubes-mount-home.service >/dev/null
 fi