adding genisoimage as dependency
authorFred T. Hamster <fred@gruntose.com>
Mon, 18 Nov 2024 18:05:53 +0000 (13:05 -0500)
committerFred T. Hamster <fred@gruntose.com>
Mon, 18 Nov 2024 18:05:53 +0000 (13:05 -0500)
our dvd and bluray scripts need this package.

scripts/core/prep_feisty_host.sh

index 0e4323daae8de500ff93077d0628eb1e0ea5b1b5..7c5c2d33bdf799bb13374a9b58055bb03443e892 100644 (file)
@@ -231,13 +231,16 @@ exit_on_error $PHASE_MESSAGE
 PHASE_MESSAGE="installing additional helper packages"
 
 if [ "$opsystem_here" == "debianesque" ]; then
-  PAX=(dos2unix imagemagick iputils-ping ncal screen python3 python3-pip xserver-xorg xorg-docs )
+  PAX=(dos2unix genisoimage imagemagick iputils-ping ncal screen python3 python3-pip xserver-xorg xorg-docs )
 elif [ "$opsystem_here" == "redhatty" ]; then
-  PAX=(dos2unix ImageMagick screen python3 python3-pip xorg-x11-server-Xwayland xorg-x11-docs )
+  PAX=(dos2unix genisoimage ImageMagick screen python3 python3-pip xorg-x11-server-Xwayland xorg-x11-docs )
+#genisoimage untested
 elif [ "$opsystem_here" == "macos" ]; then
-  PAX=(dos2unix imagemagick ncal screen python3 xquartz linuxbrew/xorg/xorg-docs )
+  PAX=(dos2unix genisoimage imagemagick ncal screen python3 xquartz linuxbrew/xorg/xorg-docs )
+#genisoimage untested
 elif [ "$opsystem_here" == "windoze" ]; then
-  PAX=(dos2unix imagemagick ncal screen python3 python3-pip xserver-xorg xorg-docs )
+  PAX=(dos2unix genisoimage imagemagick ncal screen python3 python3-pip xserver-xorg xorg-docs )
+#genisoimage untested
 fi
 
 install_system_package "${PAX[@]}"