From: Lennart Poettering Date: Thu, 22 Sep 2022 12:19:10 +0000 (+0200) Subject: Revert "systemd-run: refuse --working-directory option with --scope" X-Git-Tag: v252-rc1~109^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7b5ea69551c021a729a5d9a898a1a0d5d924bdf;p=thirdparty%2Fsystemd.git Revert "systemd-run: refuse --working-directory option with --scope" This reverts commit 780c8055378589e5a7d419789761c35d05295291. --- diff --git a/src/run/run.c b/src/run/run.c index 741f7b279fe..e2915fe4def 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -593,10 +593,6 @@ static int parse_argv(int argc, char *argv[]) { return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "--remain-after-exit and --service-type= are not supported in --scope mode."); - if (arg_scope && arg_working_directory) - return log_error_errno(SYNTHETIC_ERRNO(EINVAL), - "--working-directory is not supported in --scope mode."); - if (arg_stdio != ARG_STDIO_NONE && (with_trigger || arg_scope)) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "--pty/--pipe is not compatible in timer or --scope mode.");