Skip to content

Commit

Permalink
add video-editor to the available playbooks in the bootstrap USB
Browse files Browse the repository at this point in the history
  • Loading branch information
brabster committed Mar 16, 2024
1 parent ef8f8e6 commit c48d3f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup_bootstrap_ansible_usb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ echo "Mounting new partition"
MOUNT_DIR=$(mktemp -d)
mount -t auto -v "${USB_PARTITION}" "${MOUNT_DIR}"

for src_file in roles .vars.yml bootstrap.sh README.md workstation.yml vars.yml; do
echo "Copying bootstrap files"
for src_file in roles .vars.yml bootstrap.sh README.md workstation.yml video-editor.yml vars.yml; do
cp -r "${SCRIPT_DIR}"/${src_file} "${MOUNT_DIR}"
done
sync

echo "All done, ejecting"
umount "${USB_PARTITION}"
eject "${USB_PARTITION}"
rm -rf "${MOUNT_DIR}"
Expand Down

0 comments on commit c48d3f1

Please sign in to comment.