From 373c8fef6005564edacdb1d954e5e34d61a76dc3 Mon Sep 17 00:00:00 2001
From: Shannon Appelcline <shannon.appelcline@gmail.com>
Date: Tue, 19 May 2020 10:51:01 -1000
Subject: [PATCH] Cleanup of timezone

Courtesy @SimoneBovi  in PR #114
---
 02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md b/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md
index d50f5a2..374183a 100644
--- a/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md
+++ b/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md
@@ -86,12 +86,15 @@ $ echo "127.0.1.1 mybtc.local mybtc" >> /etc/hosts
 
 Make sure your timezone is correct.
 
+You can find a list of possible timezones in `/usr/share/zoneinfo`. 
+
 The following example sets your machine to the American west coast timezone:
 
 ```
 $ echo "America/Los_Angeles" > /etc/timezone
 $ cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
 ```
+Afterward you can run `date` to ensure everything was set correctly
 
 ## Protecting Your VPS