diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-01-19 19:57:56 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-01-20 17:50:23 +0100 |
commit | 8662fcbcf1f31725998bd1ebe706ac813b053962 (patch) | |
tree | ef419ce44d80c09be06e799481ec19da0d30fa9b /units/systemd-sysext.service | |
parent | sysext: split version validation logic into function of its own (diff) | |
download | systemd-8662fcbcf1f31725998bd1ebe706ac813b053962.tar.xz systemd-8662fcbcf1f31725998bd1ebe706ac813b053962.zip |
sysext: rework command line interface to be verb-based
As suggested by @yuwata:
https://github.com/systemd/systemd/pull/18181#pullrequestreview-570826113
Diffstat (limited to 'units/systemd-sysext.service')
-rw-r--r-- | units/systemd-sysext.service | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/units/systemd-sysext.service b/units/systemd-sysext.service index cc31f9ca9b..35b5edca1d 100644 --- a/units/systemd-sysext.service +++ b/units/systemd-sysext.service @@ -24,8 +24,8 @@ ConditionDirectoryNotEmpty=|/usr/lib/extensions [Service] Type=oneshot RemainAfterExit=yes -ExecStart=systemd-sysext --merge -ExecStop=systemd-sysext --unmerge +ExecStart=systemd-sysext merge +ExecStop=systemd-sysext unmerge [Install] WantedBy=sysinit.target |