/usr/share/jockey/handlers/vmware-client.py is in jockey-common 0.9.7-0ubuntu7.16.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # (c) 2009, 2011 Canonical Ltd.
# Author: Martin Owens <doctormo@ubuntu.com>
# License: GPL v2 or later
from jockey.handlers import Handler, KernelModuleHandler
# dummy stub for xgettext
def _(x): return x
class VmwareClientHandler(KernelModuleHandler):
'''Handler for the VMWARE client tools.
Allows us to install some nice client tools for VMWARE clients.
'''
def __init__(self, ui):
KernelModuleHandler.__init__(self, ui, 'vmxnet',
name=_('VMWare Client Tools'),
description=_('Install VMWare client drivers and tools'),
rationale=_('Install the VMWare client drivers and tools'
' for your VMWare based Ubuntu installation.\n\n'
'This should help you use Ubuntu in your VM.'))
self.package = 'open-vm-dkms'
self._free = True
def id(self):
'''Return an unique identifier of the handler.'''
return 'vm:' + self.module
|