From 3d738e83f53c434741c7177ce71156fa1cb5b39a Mon Sep 17 00:00:00 2001 From: Evan Waechtler <48002879+blueneekone@users.noreply.github.com> Date: Sun, 2 Oct 2022 23:25:58 -0600 Subject: [PATCH] Update gns3.service.systemd In reference to bug #1918, the gns3.service.systemd file references ExecPath /usr/bin/gns3server which needs to be changed to /usr/local/bin/gns3server for the daemon/service to run without failure. Please see the change I made to the service above. --- init/gns3.service.systemd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init/gns3.service.systemd b/init/gns3.service.systemd index ce504ee1..cff5cb4d 100644 --- a/init/gns3.service.systemd +++ b/init/gns3.service.systemd @@ -6,7 +6,7 @@ After=network.target network-online.target [Service] User=gns3 Group=gns3 -ExecStart=/usr/bin/gns3server +ExecStart=/usr/local/bin/gns3server [Install] -WantedBy=multi-user.target \ No newline at end of file +WantedBy=multi-user.target