Created
January 21, 2015 17:40
-
-
Save lorello/e040dbbb9d0e1a347c28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Disable UFW | |
| ufw disable | |
| # Cleanup to shrink vagrant images. | |
| #apt-get update | |
| #apt-get upgrade -y | |
| apt-get -y autoremove | |
| apt-get -y clean | |
| dd if=/dev/zero of=/EMPTY bs=1M | |
| rm -f /EMPTY | |
| rm -rf /tmp/* | |
| sync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment