1 Star 0 Fork 107

Andy Lau/anaconda

forked from src-openEuler/anaconda 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-module-setup.sh-Don-t-ignore-errors-unbound-variable-and-pipe-fails.patch 861 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 76d232cbf406416103d2cb38ab0141649f5440ee Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
Date: Tue, 21 Jun 2022 19:01:21 +0200
Subject: [PATCH] module-setup.sh: Don't ignore errors, unbound variable and
pipe fails
Note that -eu could be in the shebang,
but this way it's set even when executed via `bash module-setup.sh`
or when sourced.
---
dracut/module-setup.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dracut/module-setup.sh b/dracut/module-setup.sh
index f54d753962..9c07375c8c 100644
--- a/dracut/module-setup.sh
+++ b/dracut/module-setup.sh
@@ -1,5 +1,6 @@
#!/bin/bash
# module-setup.sh for anaconda
+set -eu -o pipefail
check() {
[[ $hostonly ]] && return 1
@@ -90,3 +91,5 @@ install() {
esac
}
+# revert back to the default in case this is sourced
+set +eu +o pipefail
--
2.23.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wilhelmleibniz/anaconda.git
git@gitee.com:wilhelmleibniz/anaconda.git
wilhelmleibniz
anaconda
anaconda
master

搜索帮助