From a2e17ef24474c3e9b80a3a6f290f120defe5e6f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Sun, 19 Oct 2014 04:11:15 +0200 Subject: [PATCH] systemd: fix 'service' path On Fedora it is all the same because /sbin -> /usr/sbin symlink. But on Debian it does matter. --- vm-systemd/misc-post.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm-systemd/misc-post.sh b/vm-systemd/misc-post.sh index 82f7745..6b37887 100755 --- a/vm-systemd/misc-post.sh +++ b/vm-systemd/misc-post.sh @@ -62,7 +62,7 @@ fi # Start AppVM specific services if [ ! -f /etc/systemd/system/cups.service ]; then if [ -f /var/run/qubes-service/cups ]; then - /sbin/service cups start + /usr/sbin/service cups start # Allow also notification icon sed -i -e '/^NotShowIn=.*QUBES/s/;QUBES//' /etc/xdg/autostart/print-applet.desktop else