9 lines
232 B
Bash
9 lines
232 B
Bash
|
#!/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
|