Azure / azure-linux-extensions

Linux Virtual Machine Extensions for Azure
Apache License 2.0
309 stars 255 forks source link

Updated python installation path search in VmSnapshotLinux for FreeBSD #1996

Closed vipunj closed 1 week ago

vipunj commented 1 week ago

Application consistent Restore Point for Free BSD Linux distro was not working because of the way VmSnapshotLinux extension looks for python installation. On FreeBSD python is installed into /usr/local/bin whereas the current implementation was looking for python installation only in /usr/bin/ path. So modified the script to check into /usr/local/bin if it is not there at /usr/bin.

arisettisanjana commented 1 week ago

Hey looks good to me, did we test to confirm if it's working now with this change.