From b3af2c55b7b4e4be63600a9fa5575919b36c476e Mon Sep 17 00:00:00 2001 From: 1kjnv Date: Thu, 29 May 2025 14:08:01 +0500 Subject: [PATCH] Modified the 'Type=oneshot' to 'Type=simple' in the systemd service file. When the process is started using 'systemctl start' or 'systemctl restart', the status remains stuck at 'activating' because the oneshot type does not indicate to systemd that the process has started successfully. Changing the type to simple ensures that systemd recognizes the process as running once it is launched. --- .../contribute/more-info/mobile/push-notifications/service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/contribute/more-info/mobile/push-notifications/service.md b/site/content/contribute/more-info/mobile/push-notifications/service.md index 5a71589ba6..15e1892462 100644 --- a/site/content/contribute/more-info/mobile/push-notifications/service.md +++ b/site/content/contribute/more-info/mobile/push-notifications/service.md @@ -41,7 +41,7 @@ For the sake of making this guide simple we located the files at `/home/ubuntu/m Description=Mattermost Push Notification Service [Service] - Type=oneshot + Type=simple ExecStart=/bin/sh -c '/home/ubuntu/mattermost-push-proxy/bin/mattermost-push-proxy | logger' WorkingDirectory=/home/ubuntu/mattermost-push-proxy