1 |
slords |
1.1 |
From c15593b7cd42cd0d2ea85a6ab464f75962be7921 Mon Sep 17 00:00:00 2001 |
2 |
|
|
From: Shad L. Lords <slords@mail.com> |
3 |
|
|
Date: Mon, 26 Oct 2009 18:15:30 -0600 |
4 |
|
|
Subject: [PATCH] Make boot loader use SME labels |
5 |
|
|
|
6 |
|
|
--- |
7 |
|
|
partedUtils.py | 4 ++-- |
8 |
|
|
1 files changed, 2 insertions(+), 2 deletions(-) |
9 |
|
|
|
10 |
|
|
diff --git a/partedUtils.py b/partedUtils.py |
11 |
|
|
index 704667d..388998a 100644 |
12 |
|
|
--- a/partedUtils.py |
13 |
|
|
+++ b/partedUtils.py |
14 |
|
|
@@ -473,8 +473,8 @@ def sniffFilesystemType(device): |
15 |
|
|
return None |
16 |
|
|
|
17 |
|
|
def getCentOSReleaseString(mountpoint): |
18 |
|
|
- if os.access(mountpoint + "/etc/redhat-release", os.R_OK): |
19 |
|
|
- f = open(mountpoint + "/etc/redhat-release", "r") |
20 |
|
|
+ if os.access(mountpoint + "/etc/e-smith-release", os.R_OK): |
21 |
|
|
+ f = open(mountpoint + "/etc/e-smith-release", "r") |
22 |
|
|
try: |
23 |
|
|
lines = f.readlines() |
24 |
|
|
except IOError: |
25 |
|
|
-- |
26 |
|
|
1.5.5.6 |
27 |
|
|
|