30 lines
966 B
Diff
30 lines
966 B
Diff
From 51ce8893d981e90640123a7dcc3e4f3621e7d819 Mon Sep 17 00:00:00 2001
|
|
From: Henrik Gombos <henrik99999@gmail.com>
|
|
Date: Thu, 25 Nov 2021 18:08:57 -0500
|
|
Subject: [PATCH] fix(img-lib): install rmdir
|
|
|
|
rmdir is used in img-lib module.
|
|
|
|
Reference:https://github.com/dracutdevs/dracut/commit/51ce8893d981e90640123a7dcc3e4f3621e7d819
|
|
Conflict:NA
|
|
---
|
|
modules.d/99img-lib/module-setup.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/99img-lib/module-setup.sh b/modules.d/99img-lib/module-setup.sh
|
|
index 558a9256..4f57b37f 100755
|
|
--- a/modules.d/99img-lib/module-setup.sh
|
|
+++ b/modules.d/99img-lib/module-setup.sh
|
|
@@ -14,7 +14,7 @@ depends() {
|
|
|
|
# called by dracut
|
|
install() {
|
|
- inst_multiple tar gzip dd echo tr
|
|
+ inst_multiple tar gzip dd echo tr rmdir
|
|
# TODO: make this conditional on a cmdline flag / config option
|
|
inst_multiple -o cpio xz bzip2 zstd
|
|
inst_simple "$moddir/img-lib.sh" "/lib/img-lib.sh"
|
|
--
|
|
2.23.0
|
|
|