forked from pool/systemd
53 lines
2.9 KiB
Diff
53 lines
2.9 KiB
Diff
|
From b3ae710c251d0ce5cf2cef63208e325497b5e323 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
||
|
Date: Tue, 1 Apr 2014 20:43:15 -0400
|
||
|
Subject: [PATCH] systemctl: update NAME to PATTERN in help()
|
||
|
|
||
|
Previously the man page was modified, but not help().
|
||
|
---
|
||
|
TODO | 2 ++
|
||
|
src/systemctl/systemctl.c | 14 +++++++-------
|
||
|
2 files changed, 9 insertions(+), 7 deletions(-)
|
||
|
|
||
|
diff --git TODO TODO
|
||
|
index 4ff69ff..0343b94 100644
|
||
|
--- TODO
|
||
|
+++ TODO
|
||
|
@@ -1,4 +1,6 @@
|
||
|
Bugfixes:
|
||
|
+* Should systemctl status \* work on all unit types, not just .service?
|
||
|
+
|
||
|
* enabling an instance unit creates a pointless link, and
|
||
|
the unit will be started with getty@getty.service:
|
||
|
$ systemctl enable getty@.service
|
||
|
diff --git src/systemctl/systemctl.c src/systemctl/systemctl.c
|
||
|
index 6b88f85..653a324 100644
|
||
|
--- src/systemctl/systemctl.c
|
||
|
+++ src/systemctl/systemctl.c
|
||
|
@@ -5403,15 +5403,15 @@ static int systemctl_help(void) {
|
||
|
" otherwise restart if active\n"
|
||
|
" isolate NAME Start one unit and stop all others\n"
|
||
|
" kill NAME... Send signal to processes of a unit\n"
|
||
|
- " is-active NAME... Check whether units are active\n"
|
||
|
- " is-failed NAME... Check whether units are failed\n"
|
||
|
- " status [NAME...|PID...] Show runtime status of one or more units\n"
|
||
|
- " show [NAME...|JOB...] Show properties of one or more\n"
|
||
|
+ " is-active PATTERN... Check whether units are active\n"
|
||
|
+ " is-failed PATTERN... Check whether units are failed\n"
|
||
|
+ " status [PATTERN...|PID...] Show runtime status of one or more units\n"
|
||
|
+ " show [PATTERN...|JOB...] Show properties of one or more\n"
|
||
|
" units/jobs or the manager\n"
|
||
|
- " cat NAME... Show files and drop-ins of one or more units\n"
|
||
|
+ " cat PATTERN... Show files and drop-ins of one or more units\n"
|
||
|
" set-property NAME ASSIGNMENT... Sets one or more properties of a unit\n"
|
||
|
- " help NAME...|PID... Show manual for one or more units\n"
|
||
|
- " reset-failed [NAME...] Reset failed state for all, one, or more\n"
|
||
|
+ " help PATTERN...|PID... Show manual for one or more units\n"
|
||
|
+ " reset-failed [PATTERN...] Reset failed state for all, one, or more\n"
|
||
|
" units\n"
|
||
|
" list-dependencies [NAME] Recursively show units which are required\n"
|
||
|
" or wanted by this unit or by which this\n"
|
||
|
--
|
||
|
1.7.9.2
|
||
|
|