%PDF- %PDF-
Direktori : /proc/227033/root/lib/python2.7/site-packages/salt/states/ |
Current File : //proc/227033/root/lib/python2.7/site-packages/salt/states/mac_assistive.py |
# -*- coding: utf-8 -*- ''' Allows you to manage assistive access on macOS minions with 10.9+ ================================================================= Install, enable and disable assistive access on macOS minions .. code-block:: yaml /usr/bin/osacript: assistive.installed: - enabled: True ''' # Import Python libs from __future__ import absolute_import, unicode_literals, print_function import logging # Import Salt libs import salt.utils.platform from salt.utils.versions import LooseVersion as _LooseVersion log = logging.getLogger(__name__) __virtualname__ = "assistive" def __virtual__(): ''' Only work on Mac OS ''' if salt.utils.platform.is_darwin() \ and _LooseVersion(__grains__['osrelease']) >= _LooseVersion('10.9'): return True return False def installed(name, enabled=True): ''' Make sure that we have the given bundle ID or path to command installed in the assistive access panel. name The bundle ID or path to command enable Should assistive access be enabled on this application? ''' ret = {'name': name, 'result': True, 'comment': '', 'changes': {}} is_installed = __salt__['assistive.installed'](name) if is_installed: is_enabled = __salt__['assistive.enabled'](name) if enabled != is_enabled: __salt__['assistive.enable'](name, enabled) ret['comment'] = 'Updated enable to {0}'.format(enabled) else: ret['comment'] = 'Already in the correct state' else: __salt__['assistive.install'](name, enabled) ret['comment'] = 'Installed {0} into the assistive access panel'.format(name) return ret