Changeset 467cd2e
- Timestamp:
- Sep 20, 2013 10:35:13 AM (11 years ago)
- Branches:
- master
- Children:
- befb8e4
- Parents:
- 1f9c361 (diff), b213b53 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- fedd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/Makefile
r1f9c361 r467cd2e 16 16 WSDL_FILES= ../wsdl/fedd.wsdl ../wsdl/fedd_types.xsd ../wsdl/fedd_internal.wsdl ../wsdl/topdl.xsd 17 17 18 VERSION=3. 21b18 VERSION=3.50b 19 19 20 20 DISTFILES= dist/fedd-${VERSION}.tar.gz dist/deter-data-${VERSION}.tar.gz -
fedd/federation/access.py
rb213b53 r467cd2e 357 357 358 358 cmd = "%s %s" % (self.userconfcmd, project) 359 conf = subprocess.call(shlex.split(cmd), 359 try: 360 conf = subprocess.call(shlex.split(cmd), 360 361 stdout=cf, stderr=dev_null, close_fds=True) 362 except EnvironmentError,e: 363 raise service_error(service_error.internal, 364 "Could not run userconf command: %s %s" \ 365 % (e.filename, e.strerror)) 361 366 362 367 self.auth.set_attribute(confid, "/%s" % str(confid)) -
fedd/setup.py
r1f9c361 r467cd2e 4 4 5 5 setup(name='fedd', 6 version='3. 21b',6 version='3.50b', 7 7 description='DETER Federation daemon', 8 8 author='Ted Faber',
Note: See TracChangeset
for help on using the changeset viewer.