From 3b586dcc54435f0cf5781164be7cbeea3005fd3b Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Wed, 4 Jul 2018 09:41:47 +0100 Subject: [PATCH] Don't explicitly enable the systemd service after installing Commit 432a21f5 makes the service D-Bus activated so there's no need to enable it explicitly. --- bootstrap.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 8a8125e..d61d4bf 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -33,13 +33,5 @@ set -x sudo ninja install -# Verify user wants to run the daemon -set +x -read -p "Enable and run the daemon? [Yy] " -r -[[ $REPLY =~ ^[Yy]$ ]] -set -x - +# Reload systemd configuration so that it picks up the new service. systemctl --user daemon-reload -systemctl --user enable gamemoded -systemctl --user restart gamemoded -systemctl --user status gamemoded