this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: `$EBIL_HOST`

robin 212de4d8 8263c039

+3 -2
+3 -2
ebil.sh
··· 6 6 7 7 EBIL_SITE="${EBIL_SITE:-""}" 8 8 EBIL_PATH="${EBIL_PATH:-"."}" 9 + EBIL_HOST="${EBIL_HOST:-"ebil.club"}" 9 10 10 11 # util ======================================================================== 11 12 ··· 68 69 if [ -f "${EBIL_PATH}/index.txt" ]; then 69 70 msg "" "custom curl message configured" "${EBIL_PATH}/index.txt" 70 71 fi 71 - rsync -rltzq --progress --delete --chmod=D755,F644 "${EBIL_PATH}/" "ebil.club:/var/ebil.club/${name}/${EBIL_SITE}" 72 + rsync -rltzq --progress --delete --chmod=D755,F644 "${EBIL_PATH}/" "${EBIL_HOST}:/var/ebil.club/${name}/${EBIL_SITE}" 72 73 } 73 74 74 75 pull() { ··· 86 87 name="${EBIL_SITE%.ebil.club}" 87 88 88 89 msg "pulling from" "${EBIL_SITE}" "to" "${EBIL_PATH}" 89 - rsync -rltzq --progress "ebil.club:/var/ebil.club/${name}/${EBIL_SITE}/" "${EBIL_PATH}" 90 + rsync -rltzq --progress "${EBIL_HOST}:/var/ebil.club/${name}/${EBIL_SITE}/" "${EBIL_PATH}" 90 91 } 91 92 92 93 main() {