diff options
author | Mike Yuan <me@yhndnzj.com> | 2024-07-05 21:34:07 +0200 |
---|---|---|
committer | Mike Yuan <me@yhndnzj.com> | 2024-08-12 16:23:23 +0200 |
commit | 119cba78353e5d8337bfde0a66a0dcd707072e8b (patch) | |
tree | d797c82b835c57b2b98a05c93facc492f1ee58e6 /src/systemctl/systemctl-edit.c | |
parent | edit-util: several cleanups for --stdin handling (diff) | |
download | systemd-119cba78353e5d8337bfde0a66a0dcd707072e8b.tar.xz systemd-119cba78353e5d8337bfde0a66a0dcd707072e8b.zip |
networkctl: support edit --stdin
Diffstat (limited to 'src/systemctl/systemctl-edit.c')
-rw-r--r-- | src/systemctl/systemctl-edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl-edit.c b/src/systemctl/systemctl-edit.c index 15398f8364..b7bd3851fd 100644 --- a/src/systemctl/systemctl-edit.c +++ b/src/systemctl/systemctl-edit.c @@ -323,7 +323,7 @@ int verb_edit(int argc, char *argv[], void *userdata) { int r; if (!on_tty() && !arg_stdin) - return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot edit units if not on a tty."); + return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot edit units interactively if not on a tty."); if (arg_transport != BUS_TRANSPORT_LOCAL) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot edit units remotely."); |