summaryrefslogtreecommitdiff
path: root/0001-disable-isolabel-character-change.patch
blob: f3c692606e04369420494c29021f57ac4b7e9873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
From aae1b6a8399062f6aacdad5df474474ef2185f40 Mon Sep 17 00:00:00 2001
From: sunguoshuai <sunguoshuai@huawei.com>
Date: Fri, 11 Jan 2019 03:17:16 -0500
Subject: [PATCH] disable isolabel character change

---
 share/templates.d/99-generic/live/x86.tmpl | 6 +++---
 share/templates.d/99-generic/x86.tmpl      | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/share/templates.d/99-generic/live/x86.tmpl b/share/templates.d/99-generic/live/x86.tmpl
index 9290dbb..ba0ffdc 100644
--- a/share/templates.d/99-generic/live/x86.tmpl
+++ b/share/templates.d/99-generic/live/x86.tmpl
@@ -9,10 +9,10 @@ LIVEDIR="LiveOS"
 LORAXDIR="usr/share/lorax/"
 
 ## Don't allow spaces or escape characters in the iso label
-def valid_label(ch):
-    return ch.isalnum() or ch == '_'
+#def valid_label(ch):
+#    return ch.isalnum() or ch == '_'
 
-isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
+#isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
 
 import os
 from os.path import basename
diff --git a/share/templates.d/99-generic/x86.tmpl b/share/templates.d/99-generic/x86.tmpl
index 1b0a940..aff0255 100644
--- a/share/templates.d/99-generic/x86.tmpl
+++ b/share/templates.d/99-generic/x86.tmpl
@@ -9,10 +9,10 @@ KERNELDIR=PXEBOOTDIR
 LORAXDIR="usr/share/lorax/"
 
 ## Don't allow spaces or escape characters in the iso label
-def valid_label(ch):
-    return ch.isalnum() or ch == '_'
+#def valid_label(ch):
+#    return ch.isalnum() or ch == '_'
 
-isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
+#isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)

 import os
 from os.path import basename
-- 
1.8.3.1