Fix guix systemd daemon

This commit is contained in:
Bob Mottram 2017-08-26 18:56:59 +01:00
parent cdbf4de7e0
commit e8aa014c6c
1 changed files with 4 additions and 3 deletions

View File

@ -195,12 +195,13 @@ function install_guix {
guixbuilder$i;
done
if [ ! -f /root/.guix-profile/lib/systemd/system/guix-daemon.service ]; then
GUIX_DAEMON=(find $INSTALL_DIR/guix -name guix-daemon.service)
if [ ! -f $GUIX_DAEMON ]; then
echo $"$GUIX_DAEMON"
echo $'No guix systemd daemon found'
exit 78225548
fi
cp /root/.guix-profile/lib/systemd/system/guix-daemon.service \
/etc/systemd/system/
cp $GUIX_DAEMON /etc/systemd/system/
systemctl enable guix-daemon
systemctl start guix-daemon