systemctl
không có chế độ phù hợp cho kịch bản; sử dụng show
thay vì status
và thêm -p
/ --properties
và --value
các tùy chọn để chỉ nhận đầu ra bạn muốn.
Đây là một ví dụ (từ hệ thống Ubuntu 17.04):
$ systemctl show -p SubState --value NetworkManager
running
Chạy (hoặc cách khác) là một SubState
. Nếu bạn muốn biết liệu một dịch vụ có hoạt động hay không, hãy sử dụng thuộc tínhActiveState
$ systemctl show -p ActiveState --value x11-common
inactive
$ systemctl show -p SubState --value x11-common
dead
Ghi chú từ man
:
show [PATTERN...|JOB...]
Show properties of one or more units, jobs, or the manager
itself. If no argument is specified, properties of the
manager will be shown. If a unit name is specified, properties
of the unit are shown, and if a job ID is specified,
properties of the job are shown. By default, empty properties
are suppressed. Use --all to show those too. To select specific
properties to show, use --property=. This command is intended
to be used whenever computer-parsable output is required. Use
status if you are looking for formatted human-readable output.
-p, --property=
When showing unit/job/manager properties with the show command,
limit display to properties specified in the argument. The
argument should be a comma-separated list of property names,
such as "MainPID". Unless specified, all known properties are
shown. If specified more than once, all properties with the
specified names are shown. Shell completion is implemented for
property names.
--value
When printing properties with show, only print the value, and
skip the property name and "=".
inactive
hoặcactivating
và cả haisystemctl status
vàsystemctl is-active
thoát với 3. (kể từ systemd-241 ) Cách giải quyết:systemctl show service | grep -qx ActiveStatus=activating