updated echo statement

This commit is contained in:
Vlad Doster 2020-04-02 02:27:09 -05:00 committed by GitHub
parent f6c1b87738
commit 01e84cf0a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,10 @@ if (( $EUID != 0 )); then
echo "Please run as root"
exit
elif [[ "$tz" == "CDT" ]]; then
echo "Changing to Eastern Daylight Time timezone"
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
echo "Changed to Eastern Daylight Time timezone"
elif [[ "$tz" == "EDT" ]]; then
echo "Changing to Central timezone"
ln -sf /usr/share/zoneinfo/US/Central /etc/localtime
echo "Changed to Central timezone"
fi