diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-09-14 14:05:25 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-09-15 14:59:11 +0200 |
commit | 89c4dc52b3e635904e5cc6e7af500a8ea1963b64 (patch) | |
tree | f71423d794bcb18e44b4769542786f9927e55dd4 | |
parent | units: make sure that initrd-switch-root.service pulls in .target (diff) | |
download | systemd-89c4dc52b3e635904e5cc6e7af500a8ea1963b64.tar.xz systemd-89c4dc52b3e635904e5cc6e7af500a8ea1963b64.zip |
units: drop path to executable in $PATH
We don't have it other places, so let's make things a bit simpler.
-rw-r--r-- | units/system-update-cleanup.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/system-update-cleanup.service b/units/system-update-cleanup.service index d0878dcb0b..5a5dd725a1 100644 --- a/units/system-update-cleanup.service +++ b/units/system-update-cleanup.service @@ -32,4 +32,4 @@ ConditionPathIsSymbolicLink=|/system-update [Service] Type=oneshot -ExecStart=/bin/rm -fv /system-update +ExecStart=rm -fv /system-update |