source: opsi/opsi-getDepots.py@ 1032

Last change on this file since 1032 was 845, checked in by joergs, on Mar 19, 2010 at 9:50:53 AM

added comment

  • Property svn:executable set to *
File size: 560 bytes
Line 
1#!/usr/bin/python
2# -*- coding: utf-8 -*-
3
4# replacment for the shell command "opsi-admin -d -S method getDepotIds_list"
5
6#from OPSI.Backend.Backend import *
7from OPSI.Backend.BackendManager import BackendManager
8
9#from OPSI.Backend.JSONRPC import JSONRPCBackend
10#from OPSI.Logger import *
11#from OPSI.Product import *
12#from OPSI import Tools
13#from OPSI.UI import *
14
15bm = BackendManager(authRequired = False, configFile = '/etc/opsi/backendManager.d')
16depotIds = bm.getDepotIds_list()
17for i in range(len(depotIds)):
18 print "depots[%i]=%s" % (i, depotIds[i])
Note: See TracBrowser for help on using the repository browser.