From 0db9b2fa0b6798da0d664e9f54fe82b26f5ae0ab Mon Sep 17 00:00:00 2001 From: Ricky Zhou Date: Sun, 2 Mar 2008 19:39:57 -0500 Subject: [PATCH] Change port to match dev.cfg, use Toshio's workaround for the makedb bug. --- fas/client/fasClient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fas/client/fasClient.py b/fas/client/fasClient.py index db65ca3..d02bd54 100755 --- a/fas/client/fasClient.py +++ b/fas/client/fasClient.py @@ -30,7 +30,7 @@ from optparse import OptionParser from shutil import move, rmtree from rhpl.translate import _ -FAS_URL = 'http://localhost:8080/fas/' +FAS_URL = 'http://localhost:8088/fas/' parser = OptionParser() @@ -78,7 +78,7 @@ class MakeShellAccounts(BaseClient): temp = None def mk_tempdir(self): - self.temp = tempfile.mkdtemp('-tmp', 'fas-') + self.temp = tempfile.mkdtemp('-tmp', 'fas-', '/var/db') os.chmod(self.temp, 00400) def rm_tempdir(self):