Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct 24hr to 12hr conversion in documentation #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions samples/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Copy the OAuth URL, and paste it into the browser, login as the user that will b

On the server type `crontab -e`. This will probably open up your cron in VIM, so here's some specific instructions including saving and exiting vim. :tada:

In the following command, `55 18 * * *` means at minute 55 of the hour 18, or 2:55pm every day. So change those numbers as you see fit.
In the following command, `55 18 * * *` means at minute 55 of the hour 18, or 6:55pm every day. So change those numbers as you see fit.

* Press the down arrow until you get to the bottom. Then press 'o' to start a new line.
* Type: `PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin`
Expand All @@ -59,7 +59,7 @@ In the following command, `55 18 * * *` means at minute 55 of the hour 18, or 2:
* Then press ESC
* Now type ZZ

Note: The time 2:55pm is based on whatever the system's timezone is. You can double check this by running `date` and it will say something like "Wed Sep 26 22:53:45 PDT 2018" where "PDT" means the server is set to Pacific Daylight Time timezone.
Note: The time 6:55pm is based on whatever the system's timezone is. You can double check this by running `date` and it will say something like "Wed Sep 26 22:53:45 PDT 2018" where "PDT" means the server is set to Pacific Daylight Time timezone.

Any errors will be saved in the `~/emailer/emailer.log` file. And you can look at the time of the file or `sudo grep cron /var/log/syslog` to see when the command last ran.

Expand Down