iscsi, logging: reuse the global ISCSID in has_iscsi().
This prevents calling find_program_in_path() repeatedly and having the log
message "ISCSID is /sbin/iscsid" all over the place.
---
pyanaconda/storage/iscsi.py | 23 +++++++++++------------
1 files changed, 11 insertions(+), 12 deletions(-)
def has_iscsi():
global ISCSID
- location = iutil.find_program_in_path("iscsid")
- if location:
- ISCSID = location
-
- if ISCSID == "" or not has_libiscsi:
- return False
-
- log.info("ISCSID is %s" % (ISCSID,))
-
- # make sure the module is loaded
- if not os.access("/sys/module/iscsi_tcp", os.X_OK):
- return False
- return True
+
+ if os.access("/sys/module/iscsi_tcp", os.X_OK):
+ if len(ISCSID):
+ return True
+ else:
+ location = iutil.find_program_in_path("iscsid")
+ if location:
+ ISCSID = location
+ log.info("ISCSID is %s" % (ISCSID,))
+ return True
+
+ return False
def randomIname():
"""Generate a random initiator name the same way as iscsi-iname"""
--
1.7.1.1
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
10-29-2010, 10:51 AM
Ales Kozumplik
iscsi, logging: reuse the global ISCSID in has_iscsi().
This prevents calling find_program_in_path() repeatedly and having the log
message "ISCSID is /sbin/iscsid" all over the place.
---
pyanaconda/storage/iscsi.py | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
def has_iscsi():
global ISCSID
- location = iutil.find_program_in_path("iscsid")
- if location:
- ISCSID = location
-
- if ISCSID == "" or not has_libiscsi:
+
+ if not os.access("/sys/module/iscsi_tcp", os.X_OK):
return False
- log.info("ISCSID is %s" % (ISCSID,))
+ if not ISCSID:
+ location = iutil.find_program_in_path("iscsid")
+ if not location:
+ return False
+ ISCSID = location
+ log.info("ISCSID is %s" % (ISCSID,))
- # make sure the module is loaded
- if not os.access("/sys/module/iscsi_tcp", os.X_OK):
- return False
return True
def randomIname():
--
1.7.1.1
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
11-01-2010, 02:30 PM
Chris Lumens
iscsi, logging: reuse the global ISCSID in has_iscsi().
> This prevents calling find_program_in_path() repeatedly and having the log
> message "ISCSID is /sbin/iscsid" all over the place.
ACK to this one.
- Chris
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list