Simon Bruder
b8c4e671c2
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
232 B
Bash
Executable file
9 lines
232 B
Bash
Executable file
#!/bin/sh
|
|
echo "Restoring upstream nix store…"
|
|
mkdir -p /nix/store
|
|
chmod 1775 /nix/store
|
|
chgrp nixbld /nix/store
|
|
rsync -a /nix/store-upstream/./ /nix/store
|
|
nix-daemon &
|
|
exec su-exec nobody:nogroup /usr/local/bin/drone-runner-exec
|