mirror of
https://github.com/captn3m0/google-sre-ebook.git
synced 2024-09-17 01:40:22 +00:00
2be3103c32
Fix references to the domain, and correct the path to the book as well.
24 lines
608 B
Bash
24 lines
608 B
Bash
# Google SRE Books.
|
|
|
|
# NOTE: The indentation before inner vars should be always "tab" not "space".
|
|
declare -A BOOKS
|
|
BOOKS=(
|
|
|
|
# Site Reliability Engineering
|
|
["SRE_BOOK"]='
|
|
BOOK_NAME=sre-book
|
|
BOOK_NAME_FULL=Site Reliability Engineering
|
|
BOOK_FILE=google-site-reliability-engineering
|
|
BOOK_TOC_URL=https://sre.google/sre-book/table-of-contents/index.html
|
|
'
|
|
|
|
# Site Reliability Workbook
|
|
["SRW_BOOK"]='
|
|
BOOK_NAME=workbook
|
|
BOOK_NAME_FULL=The Site Reliability Workbook
|
|
BOOK_FILE=google-the-site-reliability-workbook
|
|
BOOK_TOC_URL=https://sre.google/workbook/table-of-contents/index.html
|
|
'
|
|
|
|
)
|