Browse Source

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.
Alex Smith 6 years ago
parent
commit
3b586dcc54
1 changed files with 1 additions and 9 deletions
  1. 1 9
      bootstrap.sh

+ 1 - 9
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