[1027] | 1 | #!/usr/bin/env python
|
---|
| 2 |
|
---|
[1061] | 3 | # -*- coding: utf-8 -*-
|
---|
| 4 |
|
---|
[1055] | 5 | """ospi-client: performs operation for opsi clients on opsi server via JSON-RPC."""
|
---|
| 6 |
|
---|
[1061] | 7 | __author__ = "Joerg Steffens"
|
---|
[1055] | 8 | __copyright__ = "Copyright 2012, dass IT GmbH"
|
---|
| 9 | __license__ = "GPL"
|
---|
| 10 | __version__ = "1.0"
|
---|
| 11 | __email__ = "joerg.steffens@dass-it.de"
|
---|
| 12 |
|
---|
[1062] | 13 | # ATTENTION:
|
---|
| 14 | # python-json-rpc has a problem with http-proxy support.
|
---|
| 15 | # In case of problems, make sure, the environment variables
|
---|
| 16 | # http_proxy / https_proxy
|
---|
| 17 | # are *not* set.
|
---|
| 18 |
|
---|
[1055] | 19 | #
|
---|
[1051] | 20 | # Skript, dass ein OPSI-Rechner-Eintrag kopiert.
|
---|
[1046] | 21 | # D.h. die Produkte, Anforderung.
|
---|
| 22 | # Ggf. optional Stand und ggf. Versionsnummer
|
---|
| 23 | # Ggf. optional ProductProperties
|
---|
[1055] | 24 | #
|
---|
[1027] | 25 |
|
---|
[1051] | 26 | #self.command("opsi-admin -d method host_createOpsiClient "+ \
|
---|
| 27 | #computername + " null " + "\\'"+description+"\\'" + \
|
---|
| 28 | #" \\'created by dassadmin\\' " + mac_address + " " + \
|
---|
| 29 | #ip_address)
|
---|
| 30 | #self.command("opsi-admin -d method configState_create clientconfig.depot.id " + \
|
---|
| 31 | #computername + " " + depotName)
|
---|
[1047] | 32 |
|
---|
| 33 | import argparse
|
---|
[1046] | 34 | import jsonrpc
|
---|
[1027] | 35 | from pprint import pprint
|
---|
| 36 |
|
---|
[1053] | 37 | UrlJsonRpc="https://<USERNAME>:<PASSWORD>@opsi:4447/rpc"
|
---|
[1027] | 38 |
|
---|
[1046] | 39 | class OpsiRpc:
|
---|
[1047] | 40 |
|
---|
| 41 | ProductAttributesCopy = ['actionRequest','actionResult','installationStatus','packageVersion','productVersion']
|
---|
| 42 |
|
---|
| 43 | def __init__(self, urlJsonRpc, debug=False ):
|
---|
| 44 | self.debug=debug
|
---|
[1046] | 45 | self.urlJsonRpc=urlJsonRpc
|
---|
[1047] | 46 | self.rpc=jsonrpc.ServiceProxy(self.urlJsonRpc)
|
---|
[1046] | 47 |
|
---|
| 48 | def dump(self):
|
---|
| 49 | print self.urlJsonRpc
|
---|
[1047] | 50 | print self.rpc.getClientIds_list()
|
---|
[1051] | 51 |
|
---|
| 52 | def list(self):
|
---|
| 53 | return self.rpc.getClientIds_list()
|
---|
[1046] | 54 |
|
---|
[1051] | 55 | def exists(self, src):
|
---|
| 56 | return len( self.rpc.host_getObjects( [], {"id":src} ) ) == 1
|
---|
| 57 |
|
---|
| 58 | def info(self, src):
|
---|
| 59 | if not self.exists( src ):
|
---|
| 60 | print "failed: opsi client", src, "does not exist"
|
---|
| 61 | return False
|
---|
| 62 | print src + ":"
|
---|
[1052] | 63 | host = self.rpc.host_getHashes( [], {"id":src} )[0]
|
---|
| 64 | print " IP:", host["ipAddress"]
|
---|
| 65 | print " MAC:", host["hardwareAddress"]
|
---|
| 66 | print " inventory:", host["inventoryNumber"]
|
---|
| 67 | print " last seen:", host["lastSeen"]
|
---|
| 68 | print " notes:", host["notes"]
|
---|
| 69 |
|
---|
| 70 | print " products:"
|
---|
[1051] | 71 | products = self.getProductOnClient( src, [] )
|
---|
| 72 | for i in products:
|
---|
[1052] | 73 | print " " + i['productId'] + ":"
|
---|
| 74 | print " " + i['installationStatus'], "(",
|
---|
| 75 | if i['actionRequest']:
|
---|
| 76 | print i['actionRequest'],
|
---|
| 77 | if i['actionProgress']:
|
---|
| 78 | print i['actionProgress'],
|
---|
| 79 | print ")"
|
---|
| 80 | print " ",
|
---|
| 81 | pprint( i, indent=8 )
|
---|
[1051] | 82 | return True
|
---|
| 83 |
|
---|
| 84 | def clean(self, src):
|
---|
| 85 | if not self.exists( src ):
|
---|
| 86 | return False
|
---|
| 87 | products = self.rpc.productOnClient_getObjects( [], { 'clientId': src } )
|
---|
| 88 | self.rpc.productOnClient_deleteObjects( products )
|
---|
| 89 | if self.debug:
|
---|
| 90 | pprint( self.getProductOnClient( src ) )
|
---|
| 91 | return True
|
---|
| 92 |
|
---|
[1047] | 93 | def copyClient( self, src, dst, ipAddress = None, hardwareAddress = None, depot = None ):
|
---|
[1028] | 94 |
|
---|
[1047] | 95 | print "create/update", dst, "from template", src + ":",
|
---|
[1046] | 96 | #method host_createOpsiClient id *opsiHostKey *description *notes *hardwareAddress *ipAddress *inventoryNumber *oneTimePassword *created *lastSeen
|
---|
[1047] | 97 | #id=dst
|
---|
[1046] | 98 | opsiHostKey=None
|
---|
| 99 | description=""
|
---|
| 100 | notes="copy of " + src
|
---|
[1047] | 101 | self.rpc.host_createOpsiClient( dst, opsiHostKey, description, notes, hardwareAddress, ipAddress )
|
---|
| 102 | if depot:
|
---|
| 103 | self.rpc.configState_create( "clientconfig.depot.id", dst, depot )
|
---|
| 104 | if self.debug:
|
---|
[1051] | 105 | pprint( self.getProductOnClient( src ) )
|
---|
[1047] | 106 | self.copyProductOnClient( src, dst )
|
---|
| 107 | # TODO:
|
---|
| 108 | # copy product properties:
|
---|
| 109 | # opsiCallClientBaculaProperties=[ "method", "getProductProperties_hash", "bacula" ]
|
---|
| 110 | print "done"
|
---|
[1052] | 111 | return True
|
---|
[1047] | 112 |
|
---|
[1046] | 113 |
|
---|
[1051] | 114 | def getProductOnClient( self, client, attributes = ProductAttributesCopy ):
|
---|
[1047] | 115 | #pprint( self.rpc.productOnClient_getObjects( [], { 'clientId': client } ) )
|
---|
| 116 | #pprint( self.rpc.productOnClient_getHashes( attributes, { 'clientId': client } ) )
|
---|
[1051] | 117 | return self.rpc.productOnClient_getHashes( [], { 'clientId': client } )
|
---|
[1047] | 118 |
|
---|
| 119 | def copyProductOnClient( self, src, dst, attributes = ProductAttributesCopy ):
|
---|
| 120 | products = self.rpc.productOnClient_getHashes( attributes, { 'clientId': src } )
|
---|
| 121 | for i in products:
|
---|
| 122 | if self.debug:
|
---|
[1051] | 123 | print i['productId']
|
---|
[1047] | 124 | pprint( i )
|
---|
| 125 | i['clientId'] = dst
|
---|
| 126 | self.rpc.productOnClient_createObjects( i )
|
---|
[1051] | 127 | if self.debug:
|
---|
| 128 | pprint( self.getProductOnClient( dst ) )
|
---|
[1047] | 129 |
|
---|
[1028] | 130 |
|
---|
| 131 |
|
---|
[1047] | 132 | if __name__ == '__main__':
|
---|
[1062] | 133 | parser = argparse.ArgumentParser(description='Command line tool for OPSI configuration.', epilog="WARNING: python-json-rpc is known to have problems with HTTP proxies. In case of problems, make sure, the environment variables http_proxy and/or https_proxy are *not* set." )
|
---|
[1047] | 134 | parser.add_argument( '--debug', action='store_true', help="enable debugging output" )
|
---|
| 135 | #parser.add_argument( '--verbose', type=bool, help="add debugging output" )
|
---|
| 136 | parser.add_argument( '--url', help="OPSI Server JSON-RPC url, normally https://<username>:<password>@<OPSI-SERVER>:4447/rpc" )
|
---|
[1028] | 137 |
|
---|
[1050] | 138 | subparsers = parser.add_subparsers(title='subcommands',
|
---|
| 139 | description='valid subcommands',
|
---|
| 140 | help='additional help',
|
---|
| 141 | dest='subcommand' )
|
---|
[1047] | 142 |
|
---|
[1050] | 143 | parser_list = subparsers.add_parser('list', help='list all opsi clients' )
|
---|
| 144 |
|
---|
| 145 | parser_exists = subparsers.add_parser('exists', help='check, if a opsi clients exists' )
|
---|
| 146 | parser_exists.add_argument( 'src', help="source opsi client" )
|
---|
[1051] | 147 |
|
---|
| 148 | parser_info = subparsers.add_parser('info', help='print information about a opsi client' )
|
---|
| 149 | parser_info.add_argument( 'src', help="opsi client" )
|
---|
| 150 |
|
---|
[1050] | 151 | parser_clean = subparsers.add_parser('clean', help='remove all product states from a opsi client' )
|
---|
| 152 | parser_clean.add_argument( 'src', help="source opsi client to clean" )
|
---|
| 153 |
|
---|
| 154 | parser_copy = subparsers.add_parser('copy', help='copy/create a opsi client from a template opsi client')
|
---|
| 155 | parser_copy.add_argument( 'src', help="source/template opsi client" )
|
---|
| 156 | parser_copy.add_argument( 'dst', help="opsi client to be created" )
|
---|
| 157 | parser_copy.add_argument( '--ip', help="IP address of the new opsi client" )
|
---|
| 158 | parser_copy.add_argument( '--mac', help="MAC address of the new opsi client" )
|
---|
| 159 | parser_copy.add_argument( '--depot', help="depot server the new opsi client should be located" )
|
---|
| 160 |
|
---|
[1047] | 161 | args = parser.parse_args()
|
---|
| 162 |
|
---|
[1050] | 163 |
|
---|
[1047] | 164 | urlJsonRpc = UrlJsonRpc
|
---|
| 165 | if args.url:
|
---|
| 166 | urlJsonRpc = args.url
|
---|
| 167 |
|
---|
| 168 | opsi=OpsiRpc( urlJsonRpc, args.debug )
|
---|
[1050] | 169 |
|
---|
[1051] | 170 | result = True
|
---|
| 171 |
|
---|
| 172 | if args.subcommand == "list":
|
---|
| 173 | print( "\n".join( opsi.list() ) )
|
---|
| 174 | elif args.subcommand == "exists":
|
---|
| 175 | result = opsi.exists( args.src )
|
---|
| 176 | elif args.subcommand == "info":
|
---|
| 177 | result = opsi.info( args.src )
|
---|
| 178 | elif args.subcommand == "clean":
|
---|
| 179 | result = opsi.clean( args.src )
|
---|
| 180 | elif args.subcommand == "copy":
|
---|
[1052] | 181 | result = opsi.copyClient( args.src, args.dst, args.ip, args.mac, args.depot )
|
---|
[1050] | 182 | else:
|
---|
| 183 | print "not yet implemented"
|
---|
| 184 |
|
---|
[1051] | 185 | if args.debug: print result
|
---|
| 186 |
|
---|
| 187 | if result:
|
---|
| 188 | exit(0)
|
---|
| 189 | else:
|
---|
| 190 | exit(1)
|
---|