summaryrefslogtreecommitdiffstats
path: root/tests/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 02d53be..7c4c6bf 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -741,7 +741,11 @@ class SyncContents(BootTest):
converted="01-bb-ee-ee-ee-ee-ff"
- fh = open("/tftpboot/pxelinux.cfg/%s" % converted)
+ if os.path.exists("/var/lib/tftpboot"):
+ fh = open("/var/lib/tftpboot/pxelinux.cfg/%s" % converted)
+ else:
+ fh = open("/tftpboot/pxelinux.cfg/%s" % converted)
+
data = fh.read()
self.assertTrue(data.find("/op/ks/") != -1)
fh.close()
@@ -751,7 +755,10 @@ class SyncContents(BootTest):
# (which was an error we had in 0.6.3)
self.api.sync()
- fh = open("/tftpboot/pxelinux.cfg/%s" % converted)
+ if os.path.exists("/var/lib/tftpboot"):
+ fh = open("/var/lib/tftpboot/pxelinux.cfg/%s" % converted)
+ else:
+ fh = open("/tftpboot/pxelinux.cfg/%s" % converted)
data = fh.read()
self.assertTrue(data.find("/op/ks/") != -1)
fh.close()