Changeset 1cf8e2c
- Timestamp:
- Mar 12, 2010 2:35:06 AM (15 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-3.01, version-3.02
- Children:
- 310d419
- Parents:
- d46b1d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/emulab_access.py
rd46b1d5 r1cf8e2c 1101 1101 "No interface %s on element %s" % \ 1102 1102 (ifname, e.name[0])) 1103 # XXX: do netmask right 1103 1104 if type =='link': 1104 1105 s = ("tb-allow-external $%s dragonportal " + \ 1105 "ip %s vlan %s \n") % \1106 "ip %s vlan %s netmask 255.255.255.0\n") % \ 1106 1107 (e.name[0], addr, vlan) 1107 1108 elif type =='lan': … … 1401 1402 get_url(s, certfile, softdir) 1402 1403 1403 # Copy local portal node software to the tempdir 1404 for l, f in self.portal_software: 1405 base = os.path.basename(f) 1406 copy_file(f, "%s/%s" % (softdir, base)) 1404 # Copy local federation and portal node software to the tempdir 1405 for s in (self.federation_software, self.portal_software): 1406 for l, f in s: 1407 base = os.path.basename(f) 1408 copy_file(f, "%s/%s" % (softdir, base)) 1407 1409 1408 1410 for a in attrs:
Note: See TracChangeset
for help on using the changeset viewer.