mirror of
https://github.com/luzifer-docker/pvc-git.git
synced 2024-12-20 14:21:18 +00:00
Allow injecting netrc file
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
9a014b34b3
commit
eebcadfaf5
1 changed files with 7 additions and 0 deletions
|
@ -6,6 +6,7 @@ set -euo pipefail
|
||||||
: ${CHOWN_GID:=${CHOWN_UID}} # ID of the group to chown the repo files to
|
: ${CHOWN_GID:=${CHOWN_UID}} # ID of the group to chown the repo files to
|
||||||
: ${INTERVAL:=300} # How often to sync with remote
|
: ${INTERVAL:=300} # How often to sync with remote
|
||||||
: ${LOCAL_DIR:=/data} # Where to find the data to backup
|
: ${LOCAL_DIR:=/data} # Where to find the data to backup
|
||||||
|
: ${NETRC_CONTENT:=} # Content to put into .netrc file, base64 encoded
|
||||||
: ${PING_DOWN:=} # Send a ping (HTTP GET) to this URL when an exit-error ocurred
|
: ${PING_DOWN:=} # Send a ping (HTTP GET) to this URL when an exit-error ocurred
|
||||||
: ${PING_MAX_TIME:=5} # Time in seconds to timeout the ping request
|
: ${PING_MAX_TIME:=5} # Time in seconds to timeout the ping request
|
||||||
: ${PING_UP:=} # Send a ping (HTTP GET) to this URL when backup finished successfully
|
: ${PING_UP:=} # Send a ping (HTTP GET) to this URL when backup finished successfully
|
||||||
|
@ -37,6 +38,12 @@ function log() {
|
||||||
function main() {
|
function main() {
|
||||||
pushd "${LOCAL_DIR}"
|
pushd "${LOCAL_DIR}"
|
||||||
|
|
||||||
|
[[ -z $NETRC_CONTENT ]] || {
|
||||||
|
info "Creating .netrc from ENV..."
|
||||||
|
echo "${NETRC_CONTENT}" | base64 -d >~/.netrc
|
||||||
|
chmod 0600 ~/.netrc
|
||||||
|
}
|
||||||
|
|
||||||
info "Marking local dir save..."
|
info "Marking local dir save..."
|
||||||
git config --global --add safe.directory "$(pwd)"
|
git config --global --add safe.directory "$(pwd)"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue