Changeset 3950

Show
Ignore:
Timestamp:
01/29/09 23:49:41 (4 years ago)
Author:
gpolo
Message:

Renaming.

Files:
1 moved

Legend:

Unmodified
Added
Removed
  • branch/NetworkInventory/umit-scheduler

    r1416 r3950  
    11#!/usr/bin/env python 
    22# -*- coding: utf-8 -*- 
    3  
     3# 
    44# Copyright (C) 2007 Insecure.Com LLC. 
    55# 
     
    1010# the Free Software Foundation; either version 2 of the License, or 
    1111# (at your option) any later version. 
    12 #  
     12# 
    1313# This program is distributed in the hope that it will be useful, 
    1414# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1515# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1616# GNU General Public License for more details. 
    17 #  
     17# 
    1818# You should have received a copy of the GNU General Public License 
    1919# along with this program; if not, write to the Free Software 
     
    9595    except OSError, err: 
    9696        # maybe control file just got deleted 
    97         log.critical(">>> Tried removing %s file, got: %s" % (RUNNING_FILE,  
     97        log.critical(">>> Tried removing %s file, got: %s" % (RUNNING_FILE, 
    9898                                                              err)) 
    9999 
     
    137137    """ 
    138138    if cleanup(): # scheduler instance is running and you cant start another. 
    139         sys.exit(0)  
     139        sys.exit(0) 
    140140 
    141     process = subprocess.Popen([sys.executable, Scheduler.__file__,  
     141    process = subprocess.Popen([sys.executable, Scheduler.__file__, 
    142142                                sys.path[0], 'start', HOME_CONF]) 
    143143