Revision: | 1.2 |
Committed: | Mon Dec 8 20:47:00 2008 UTC (16 years, 4 months ago) by spiga |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.1: | +0 -0 lines |
State: | FILE REMOVED |
Log Message: | move to CredentialRenew |
# | User | Rev | Content |
---|---|---|---|
1 | mcinquil | 1.1 | from Actor import * |
2 | from SubmitterServer import SubmitterServer | ||
3 | from crab_util import * | ||
4 | import common | ||
5 | |||
6 | import os, errno, time, sys, re | ||
7 | import commands | ||
8 | |||
9 | class ProxyRenewServer(SubmitterServer): | ||
10 | |||
11 | def __init__(self, cfg_params): | ||
12 | SubmitterServer.__init__(self, cfg_params, None, "all") | ||
13 | |||
14 | def run(self): | ||
15 | common.logger.debug(5, "ProxyRenewServer::run() called") | ||
16 | self.moveProxy(self.dontMoveProxy) | ||
17 |