raspiblitz/alternative.platforms/amd64/packer/scripts/cleanup.sh
Alessio Caiazza 1edb9aa4d3
Add vagrant support (#1523)
This will allow building a raspiblitz base image with packer and spin up a development environment in a VM.
2020-09-23 13:28:18 +02:00

16 lines
361 B
Bash

#!/bin/bash -eux
# Apt cleanup.
apt autoremove
apt update
# Delete unneeded files.
rm -f /home/vagrant/*.sh
rm /home/vagrant/VBoxGuestAdditions.iso
# Zero out the rest of the free space using dd, then delete the written file.
dd if=/dev/zero of=/EMPTY bs=1M
rm -f /EMPTY
# Add `sync` so Packer doesn't quit too early, before the large file is deleted.
sync