Last active
December 17, 2015 23:58
-
-
Save orangain/5692643 to your computer and use it in GitHub Desktop.
LXC container's bootstrapping code.
This file contains 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/sh | |
set -x | |
# Additional packages | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt-get install -y language-pack-en curl wget git dnsutils unattended-upgrades | |
# Locale | |
sudo update-locale LANG=en_US.UTF-8 | |
# Timezone | |
sudo ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment