You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
846 B
26 lines
846 B
From 9dfcc5f0660b0d7cc7ca251dff940c4f2d0ddf95 Mon Sep 17 00:00:00 2001 |
|
From: Alexander Tsoy <alexander@tsoy.me> |
|
Date: Tue, 24 Feb 2015 22:28:24 +0300 |
|
Subject: [PATCH] base/dracut-lib.sh: remove bashism |
|
|
|
Cherry-picked from: 13efce5d |
|
Resolves: #1306640 |
|
--- |
|
modules.d/99base/dracut-lib.sh | 4 +++- |
|
1 file changed, 3 insertions(+), 1 deletion(-) |
|
|
|
diff --git a/modules.d/99base/dracut-lib.sh b/modules.d/99base/dracut-lib.sh |
|
index 46cee5a9..7502ab66 100755 |
|
--- a/modules.d/99base/dracut-lib.sh |
|
+++ b/modules.d/99base/dracut-lib.sh |
|
@@ -888,7 +888,9 @@ dev_unit_name() |
|
dev="${dev##/}" |
|
dev="$(str_replace "$dev" '\' '\x5c')" |
|
dev="$(str_replace "$dev" '-' '\x2d')" |
|
- dev=${dev/#\./\\x2e} |
|
+ if [ "${dev##.}" != "$dev" ]; then |
|
+ dev="\x2e${dev##.}" |
|
+ fi |
|
dev="$(str_replace "$dev" '/' '-')" |
|
|
|
printf -- "%s" "$dev"
|
|
|