mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-26 15:42:28 +01:00
This will allow building a raspiblitz base image with packer and spin up a development environment in a VM.
16 lines
361 B
Bash
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
|