···8181// export * from "./remote/redroid"; // TODO: seems to break my entire server's networking setup somehow?
8282export * from "./remote/sealskin";
83838484+export * from "./other/sccache";
8485export * from "./other/anki";
8586// export * from "./other/kopia";
8687export * from "./other/librespeed";
···11+#!/usr/bin/env sh
22+set -e
33+44+ROLE=${SCCACHE_ROLE:?SCCACHE_ROLE must be 'scheduler' or 'server'}
55+66+envsubst <"/etc/sccache/templates/${ROLE}.conf" >"/etc/sccache/${ROLE}.conf"
77+88+exec sccache-dist "${ROLE}" --config "/etc/sccache/${ROLE}.conf"