Created
November 2, 2015 10:19
-
-
Save daicham/ea629b0404d472cc8bbf to your computer and use it in GitHub Desktop.
A provisioning script for softlayer
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
# アップデート | |
yum -y update | |
# Japanese Locale の設定 | |
yum -y groupinstall "Japanese Support" | |
sed -i.org -e "s/en_US.UTF-8/ja_JP.UTF-8/g" /etc/sysconfig/i18n | |
# JST タイムゾーンに変更 | |
rm -f /etc/localtime | |
ln -s /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