mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
16 lines
339 B
Plaintext
16 lines
339 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
# Read instructions
|
||
|
cat /etc/motd
|
||
|
|
||
|
# Start the Guix daemon
|
||
|
sudo env PATH=${PATH} guix-daemon \
|
||
|
--build-users-group='guixbuild' \
|
||
|
--substitute-urls='https://bordeaux.guix.gnu.org https://ci.guix.gnu.org' < /dev/null 2>&1 |
|
||
|
sudo tee /var/log/guix.log > /dev/null &
|
||
|
|
||
|
# Hand over control
|
||
|
exec bash
|