Hello,
I need to setup a simple extension attribute to display the installed version of Python on our MacBooks. I'm using the following script input, but the display in machine inventory for the extension attribute remains blank. What am I missing? Here is the script:
#!/bin/sh
PY=`python --version`
echo "<result>$PY</result>"
exit 0That should do it, right?
Any help is appreciated!
