From c7b5ea69551c021a729a5d9a898a1a0d5d924bdf Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 22 Sep 2022 14:19:10 +0200 Subject: [PATCH] Revert "systemd-run: refuse --working-directory option with --scope" This reverts commit 780c8055378589e5a7d419789761c35d05295291. --- src/run/run.c | 4 ---- 1 file changed, 4 deletions(-) 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."); -- 2.47.3