�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` #!/bin/bash set -euo pipefail export PYTHONPATH="/usr/libexec/kcare/python:${PYTHONPATH:-}" python= # try different python versions, python3 is preferred for try_python in python3 /usr/libexec/platform-python python2; do python="$(command -v "$try_python" || true)" if [ -z "$python" ]; then # this version was not found continue fi py_version_output=$("$python" --version 2>&1) # remove "Python " prefix and split into array like (3 10 12) IFS='.' read -ra py_version_array <<<"${py_version_output/* /}" py_version_major=${py_version_array[0]} py_version_minor=${py_version_array[1]} if [[ "$py_version_major" -eq 3 ]] && [[ "$py_version_minor" -le 5 ]]; then # python 3.5 and older is not supported # in this case we try to use python2 python= continue fi # take first python which works for us break done if [ -z "$python" ]; then >&2 echo error: supported versions of python3 or python2 executables were not found exit 1 fi cmd=("$python" "-m" "kcarectl.__main__") env_path="/etc/sysconfig/kcare/kcarectl.env" if [ -f "$env_path" ]; then set -a # shellcheck disable=SC1090 . "$env_path" set +a fi exec "${cmd[@]}" "$@"