9826a7d8a3
All checks were successful
build configuration / build_vault01 (push) Successful in 1m8s
build configuration / build_rescue01 (push) Successful in 1m6s
build configuration / build_web02 (push) Successful in 1m6s
build configuration / build_storage01 (push) Successful in 1m10s
build configuration / build_compute01 (push) Successful in 1m18s
lint / check (push) Successful in 23s
build configuration / build_web01 (push) Successful in 1m34s
build configuration / push_to_cache (push) Successful in 2m8s
12 lines
304 B
Bash
Executable file
12 lines
304 B
Bash
Executable file
ENDPOINT=${ATTIC_ENDPOINT:-https://cachix.dgnum.eu}
|
|
|
|
if [ "$1" == "off" ]; then
|
|
echo "Please edit $XDG_CONFIG_HOME/nix/nix.conf to remove the cache"
|
|
elif [ "$1" == "on" ]; then
|
|
@attic@/bin/attic login dgnum "$ENDPOINT"
|
|
@attic@/bin/attic use dgnum:infra
|
|
else
|
|
echo "Help:"
|
|
echo " cache {on|off}"
|
|
fi
|
|
|