blob: ba2e1b068747662616ee3165f9f8110f87aa84ea (
plain) (
tree)
|
|
#!/bin/sh
set -e
set -x
GIT_REPO_DIR=/etc/gitrepos
ORIGIN_HTTPS=https://github.com/terminaldweller
ORIGIN_SSH=git@github.com:terminaldweller
REPOS="cgrep \
mutator \
delf \
dwasm \
colo \
blog \
devourer \
hived \
mdrtl \
scripts \
vagrantboxes \
dockerimages \
st \
dmenu \
tabbed \
dwm \
w3m \
leetcode \
irssi-scripts \
jupyter-notebook-docker-compose \
seer \
devi-githooks \
kaminokumo \
grpc \
faultreiber \
luatablegen \
magni \
cfe-extra"
bootstrap() {
for REPO in ${REPOS}; do
if [ ! -d ${GIT_REPO_DIR}/${REPO}.git ]; then
(cd "${GIT_REPO_DIR}" && git clone --bare "${ORIGIN_HTTPS}/${REPO}")
fi
done
}
update_repos() {
for REPO in ${REPOS}; do
(cd "${GIT_REPO_DIR}/${REPO}".git && git fetch origin *:*)
done
}
on_startup() {
dir_list=$(ls -A "$1")
if [ -z "$dir_list" ]; then
bootstrap
else
update_repos
fi
}
if [ "$1" = "--startup" ]; then
on_startup "$@"
elif [ "$1" = "--update" ]; then
update_repos
elif [ "$1" = "--bootstrap" ]; then
bootstrap
fi
|