Changeset 4071
- Timestamp:
- 02/16/09 19:08:00 (4 years ago)
- Location:
- branch/NetworkInventory
- Files:
-
- 3 modified
-
umit-scheduler (modified) (2 diffs)
-
umitCore/Paths.py (modified) (1 diff)
-
umitCore/Scheduler.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branch/NetworkInventory/umit-scheduler
r4066 r4071 10 10 # the Free Software Foundation; either version 2 of the License, or 11 11 # (at your option) any later version. 12 # 12 # 13 13 # This program is distributed in the hope that it will be useful, 14 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of 15 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 16 # GNU General Public License for more details. 17 # 17 # 18 18 # You should have received a copy of the GNU General Public License 19 19 # along with this program; if not, write to the Free Software … … 47 47 Setting umit home directory. 48 48 """ 49 Path. set_umit_conf(usethis, True)49 Path.force_set_umit_conf(usethis) 50 50 51 51 global HOME_CONF, RUNNING_FILE -
branch/NetworkInventory/umitCore/Paths.py
r3952 r4071 131 131 self._parse_and_set_dirs(config_file, config_dir) 132 132 133 def set_umit_conf(self, base_dir , force=False):133 def set_umit_conf(self, base_dir): 134 134 main_config_dir = "" 135 135 main_config_file = "" -
branch/NetworkInventory/umitCore/Scheduler.py
r4066 r4071 396 396 397 397 398 def _set_mailto(self, mail): 398 def _set_mailto(self, mail): 399 399 """ 400 400 Set an email to receive job results. … … 668 668 sys.path.insert(0, base_path) 669 669 from umitCore.Paths import Path 670 Path. set_umit_conf(home_conf, True)670 Path.force_set_umit_conf(home_conf) 671 671 672 672 from umitCore.UmitLogging import file_log
