Updating link to change in openSUSE:Factory/xen revision 98.0
OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=4293852b248e1f267831a4305b1c05a9
This commit is contained in:
committed by
Git OBS Bridge
parent
8198e029dc
commit
3ab5d775a1
13
popen2-argument-fix.patch
Normal file
13
popen2-argument-fix.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
Index: xen-4.0.0-testing/tools/python/xen/util/blkif.py
|
||||
===================================================================
|
||||
--- xen-4.0.0-testing.orig/tools/python/xen/util/blkif.py
|
||||
+++ xen-4.0.0-testing/tools/python/xen/util/blkif.py
|
||||
@@ -81,7 +81,7 @@ def parse_uname(uname):
|
||||
|
||||
if typ == "drbd":
|
||||
if not fn.startswith("drbd"):
|
||||
- (drbdadmstdin, drbdadmstdout) = os.popen2(["/sbin/drbdadm", "sh-dev", fn])
|
||||
+ (drbdadmstdin, drbdadmstdout) = os.popen2("/sbin/drbdadm "+"sh-dev "+fn)
|
||||
fn = drbdadmstdout.readline().strip()
|
||||
else:
|
||||
fn = "/dev/%s" %(fn,)
|
||||
Reference in New Issue
Block a user