/[smeserver]/rpms/anaconda/sme9/0007-VolGroup.patch
ViewVC logotype

Annotation of /rpms/anaconda/sme9/0007-VolGroup.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (hide annotations) (download)
Wed Sep 30 09:42:35 2015 UTC (8 years, 8 months ago) by vip-ire
Branch: MAIN
CVS Tags: anaconda-13_21_239-1_el6_sme_1, anaconda-13_21_263-1_el6_sme_1, anaconda-13_21_239-1_el6_sme, anaconda-13_21_239_1-1_el6_sme, anaconda-13_21_254-1_el6_sme_2, anaconda-13_21_254-1_el6_sme_1, anaconda-13_21_239-1_el6_sme_2, HEAD
Changes since 1.2: +10 -9 lines
Rebase VolGroup patch

1 vip-ire 1.3 diff -Nur anaconda-13.21.239/storage/__init__.py anaconda-13.21.239_bz9080/storage/__init__.py
2     --- anaconda-13.21.239/storage/__init__.py 2015-09-30 11:38:16.573437546 +0200
3     +++ anaconda-13.21.239_bz9080/storage/__init__.py 2015-09-30 11:40:58.476522195 +0200
4     @@ -968,7 +968,7 @@
5 wellsi 1.1 vgnames = [vg.name for vg in self.vgs]
6     if hn is not None and hn != '':
7     if hn == 'localhost' or hn == 'localhost.localdomain':
8     - vgtemplate = "VolGroup"
9     + vgtemplate = "main"
10     elif hn.find('.') != -1:
11     template = "vg_%s" % (hn.split('.')[0].lower(),)
12     vgtemplate = safeLvmName(template)
13 vip-ire 1.3 @@ -976,7 +976,7 @@
14 wellsi 1.1 template = "vg_%s" % (hn.lower(),)
15     vgtemplate = safeLvmName(template)
16     else:
17     - vgtemplate = "VolGroup"
18     + vgtemplate = "main"
19    
20     if vgtemplate not in vgnames and \
21     vgtemplate not in lvm.lvm_vg_blacklist:
22 vip-ire 1.3 @@ -1001,12 +1001,12 @@
23 wellsi 1.1 if mountpoint:
24     # try to incorporate the mountpoint into the name
25     if mountpoint == '/':
26     - lvtemplate = 'lv_root'
27     + lvtemplate = 'root'
28     else:
29     if mountpoint.startswith("/"):
30     - template = "lv_%s" % mountpoint[1:]
31     + template = "%s" % mountpoint[1:]
32     else:
33     - template = "lv_%s" % (mountpoint,)
34     + template = "%s" % (mountpoint,)
35    
36     lvtemplate = safeLvmName(template)
37     else:
38 vip-ire 1.3 @@ -1014,13 +1014,13 @@
39 wellsi 1.1 if len([s for s in self.swaps if s in vg.lvs]):
40     idx = len([s for s in self.swaps if s in vg.lvs])
41     while True:
42     - lvtemplate = "lv_swap%02d" % idx
43     + lvtemplate = "swap%02d" % idx
44     if lvtemplate in [lv.lvname for lv in vg.lvs]:
45     idx += 1
46     else:
47     break
48     else:
49     - lvtemplate = "lv_swap"
50     + lvtemplate = "swap"
51 vip-ire 1.3 elif pool:
52     pool_count = len([p for p in self.thinpools if p in vg.lvs])
53     if pool_count:

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed