1 Star 0 Fork 91

wangyuhang / systemd

forked from src-openEuler / systemd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-fix-analyze-q-option-invalid-issue.patch 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
From b0d294099790e75b0d8a1c90847895f5c7925354 Mon Sep 17 00:00:00 2001
From: Antonio Alvarez Feijoo <antonio.feijoo@suse.com>
Date: Tue, 9 Jan 2024 09:05:50 +0100
Subject: [PATCH] analyze: fix -q option
Follow-up to 52117f5af831a816c47ceebb83c8244ee93b72fe
(cherry picked from commit 7c0e0bbb6b13d70500da79ce0270ed6da09327a0)
---
man/systemd-analyze.xml | 1 +
shell-completion/bash/systemd-analyze | 2 +-
src/analyze/analyze.c | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/man/systemd-analyze.xml b/man/systemd-analyze.xml
index 2f2873452ac..63232ad1f02 100644
--- a/man/systemd-analyze.xml
+++ b/man/systemd-analyze.xml
@@ -1481,6 +1481,7 @@ NR NAME SHA256
<xi:include href="user-system-options.xml" xpointer="machine" />
<varlistentry>
+ <term><option>-q</option></term>
<term><option>--quiet</option></term>
<listitem><para>Suppress hints and other non-essential output.</para>
diff --git a/shell-completion/bash/systemd-analyze b/shell-completion/bash/systemd-analyze
index 8ecf9935715..1fde67218b9 100644
--- a/shell-completion/bash/systemd-analyze
+++ b/shell-completion/bash/systemd-analyze
@@ -57,7 +57,7 @@ _systemd_analyze() {
local -A OPTS=(
[STANDALONE]='-h --help --version --system --user --global --order --require --no-pager
- --man=no --generators=yes --quiet'
+ --man=no --generators=yes -q --quiet'
[ARG]='-H --host -M --machine --fuzz --from-pattern --to-pattern --root'
)
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c
index d2be144f4f4..ba95bbaba59 100644
--- a/src/analyze/analyze.c
+++ b/src/analyze/analyze.c
@@ -360,7 +360,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 0);
assert(argv);
- while ((c = getopt_long(argc, argv, "hH:M:U:", options, NULL)) >= 0)
+ while ((c = getopt_long(argc, argv, "hH:M:U:q", options, NULL)) >= 0)
switch (c) {
case 'h':
1
https://gitee.com/wangyuhang27/systemd.git
git@gitee.com:wangyuhang27/systemd.git
wangyuhang27
systemd
systemd
master

搜索帮助