Skip to content

Commit

Permalink
enhancement: Add pacman support to vagrant plugin (#117)
Browse files Browse the repository at this point in the history
Add pacman support
  • Loading branch information
Yethal authored Apr 12, 2023
1 parent b003d8e commit 99d4b21
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/molecule_plugins/vagrant/playbooks/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
(test -e /usr/bin/yum && sudo yum -y -qq install python3) ||
(test -e /usr/sbin/pkg && sudo env ASSUME_ALWAYS_YES=yes pkg update && sudo env ASSUME_ALWAYS_YES=yes pkg install python3) ||
(test -e /usr/sbin/pkg_add && sudo /usr/sbin/pkg_add -U -I -x python%3.9) ||
(test -e /usr/bin/pacman && sudo /usr/bin/pacman -Sy python3 --noconfirm --quiet) ||
echo "Warning: Python not bootstrapped due to unknown platform."
)
become: true
Expand Down

0 comments on commit 99d4b21

Please sign in to comment.