File manager - Edit - /opt/saltstack/salt/lib/python3.10/site-packages/salt/modules/__pycache__/system_profiler.cpython-310.pyc
Back
o ;j) � @ sD d Z ddlZddlZddlZdZdd� Zdd� Zdd � Zd d� Z dS )z� System Profiler Module Interface with macOS's command-line System Profiler utility to get information about package receipts and installed applications. .. versionadded:: 2015.5.0 � Nz/usr/sbin/system_profilerc C s t jj�d�} | rdS dS )zA Check to see if the system_profiler binary is available Zsystem_profilerT)FzSThe system_profiler execution module cannot be loaded: system_profiler unavailable.)�salt�utils�path�which)�PROFILER_BINARY� r �P/opt/saltstack/salt/lib/python3.10/site-packages/salt/modules/system_profiler.py�__virtual__ s r c C sd t jtddd| gt jd�}|jdd�\}}t�|�}z |d d }W |S ttfy1 g }Y |S w ) zb Call out to system_profiler. Return a dictionary of the stuff we are interested in. z-detailLevel�fullz-xml)�stdoutN)�inputr Z_items) � subprocess�Popenr �PIPE�communicate�plistlibZreadPlistFromBytes� IndexError�KeyError)Zdatatype�pZsysprofresultsZsysprof_stderr�plist�appsr r r �_call_system_profiler"