Skip to content

Commit

Permalink
fix autoinstall for freebsd 32bit
Browse files Browse the repository at this point in the history
Signed-off-by: ZouYuhua <[email protected]>
  • Loading branch information
ZouYuhua committed May 17, 2024
1 parent f2616c0 commit 20cf85b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions autoinstall/FreeBSD/14/installerconfig
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ env ASSUME_ALWAYS_YES=YES pkg update -f > /dev/ttyu0

# We install packages from ISO image
# Different packages between the 32bit image and 64bit image
{% if guest_id.find('64Guest') != -1 %}
packages_to_install='bash sudo xorg kde5 xf86-video-vmware'
{% else %}
packages_to_install='bash sudo xf86-video-vmware'
{% endif %}

for package_to_install in $packages_to_install
do
echo "Install package $package_to_install ..." > /dev/ttyu0
Expand Down

0 comments on commit 20cf85b

Please sign in to comment.