💾 Archived View for gmn.clttr.info › sources › geminispace.info.git › tree › infra › update_index.sh… captured on 2023-04-20 at 00:35:35.

View Raw

More Information

⬅️ Previous capture (2023-03-20)

➡️ Next capture (2023-06-14)

🚧 View Differences

-=-=-=-=-=-=-

#!/bin/bash
BASEDIR=$1

LOCKFILE=${BASEDIR}/crawl.lock

if [[ -f ${LOCKFILE} ]];
then
    echo "Lockfile is there, exiting"
    exit
fi

touch ${LOCKFILE}
rm ${BASEDIR}/gus.log
${BASEDIR}/infra/filter_seed_request.sh ${BASEDIR}

~/.local/bin/poetry run crawl
~/.local/bin/poetry run build_index
systemctl --user restart gus

rm ${LOCKFILE}