#!/usr/bin/env python from samba_utils import MODE_755 bld.INSTALL_FILES('${SBINDIR}','bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate', chmod=MODE_755, python_fixup=True, flat=True) bld.INSTALL_FILES('${BINDIR}','bin/testparm', chmod=MODE_755, python_fixup=True, flat=True) home/fedora/ausil/public_git/anaconda.git' title='anaconda.git Git repository'/>
summaryrefslogtreecommitdiffstats
path: root/zfcp.py
blob: bf05cb7975157f77d7ae042b7df98644207ac763 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#
# zfcp.py - mainframe zfcp configuration install data
#
# Karsten Hopp <karsten@redhat.com>
#
# Copyright 2001-2004 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#

import string
import os
import iutil
import isys

from rhpl.translate import _, N_

import logging
log = logging.getLogger("anaconda")

class ZFCP:
    def __init__(self):
        self.description = _("zSeries machines can access industry-standard SCSI devices via Fibre Channel (FCP). You need to provide 5 parameters for each device: a 16 bit device number, a 16bit SCSI ID, a 64 bit World Wide Port Name (WWPN), a 16bit SCSI LUN and a 64 bit FCP LUN.")
        self.options = [
            (_("Device number"), 1,
             _("You have not specified a device number or the number is invalid"),
             self.sanitizeDeviceInput, self.checkValidDevice),
            (_("SCSI Id"), 0,
             _("You have not specified a SCSI ID or the ID is invalid."),
             self.sanitizeHexInput, self.checkValidID),
            (_("WWPN"), 1,
             _("You have not specified a worldwide port name or the name is invalid."),
             self.sanitizeHexInput, self.checkValid64BitHex),
            (_("SCSI LUN"), 0,
             _("You have not specified a SCSI LUN or the number is invalid."),
             self.sanitizeHexInput, self.checkValidID),
            (_("FCP LUN"), 1,
             _("You have not specified a FCP LUN or the number is invalid."),
             self.sanitizeFCPLInput, self.checkValid64BitHex)]
        self.readConfig()

    def hextest(self, hex):
        try:
            int(hex, 16)
            return 0
        except:
            return -1

    def checkValidDevice(self, id):
        if id is None or id == "":
            return -1
        if len(id) != 8:             # p.e. 0.0.0600
            return -1