Index: scripts/setup.sh =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -rec7f919fdb70ff29a8de627937e4ad7008e59c1c --- scripts/setup.sh (.../setup.sh) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ scripts/setup.sh (.../setup.sh) (revision ec7f919fdb70ff29a8de627937e4ad7008e59c1c) @@ -23,13 +23,13 @@ # to use the system time/date and not use the network time protocol timedatectl set-ntp 0 -echo "Setup the timezone (UTC)" -timedatectl set-timezone UTC +echo "Setup the timezone (PDT Pacific)" +timedatectl America/Los_Angeles echo "Setup the time/date" while true; do read -p "please enter the date (yyyy-MM-dd HH:mm): " -r DATE - date -s "$DATE" + timedatectl set-time "$DATE" if [ $? -eq 0 ]; then break fi