Exheredludis/paludis/syncers/dodummy
Mike Kelly 8f0a81f559 Use /usr/bin/env bash instead of /bin/bash for the shebang of shell scripts.
This should make things run more nicely on systems like FreeBSD, where
bash isn't installed in /bin.
2008-07-09 01:17:08 -04:00

69 lines
1.5 KiB
Bash

#!/usr/bin/env bash
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
old_set=$-
set -a
for f in ${PALUDIS_BASHRC_FILES}; do
[[ -f "${f}" ]] && source "${f}"
done
[[ "${old_set}" == *a* ]] || set +a
LOCAL=
REMOTE=
delay=0
while [[ $# -gt 0 ]]; do
case "${1}" in
--help)
PROTO="${0##*/do}"
echo " URL syntax: dummy://whatever/"
echo " Options:"
echo " --count-to=n Delay noisily for n seconds"
echo " Notes:"
echo " This syncer creates a single timestamp file in the target directory. It"
echo " has no practical purpose, but it can be useful for testing."
exit 0
;;
--delay=*)
delay="${1#*=}"
;;
--*)
ewarn "${0}: unknown option '${1%%=*}'"
;;
*)
if [[ -z "${LOCAL}" ]]; then
LOCAL="${1}"
elif [[ -z "${REMOTE}" ]]; then
REMOTE="${1}"
else
eerror "${0}: extra argument '${1}'"
exit 1
fi
;;
esac
shift
done
if [[ -z "${LOCAL}" ]]; then
eerror "${0}: unspecified local repository directory"
exit 1
elif [[ -z "${REMOTE}" ]]; then
eerror "${0}: unspecified remote repository URL"
exit 1
fi
for (( x = 1 ; x <= ${delay} ; ++x )) ; do
echo "${REMOTE} -> ${LOCAL}: delaying for ${x} of ${delay}"
sleep 1
done
date +'%s' > ${LOCAL}/timestamp