From 7e48bf1b8751f021d60b34cfa47161898951b955 Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Thu, 30 Apr 2026 10:22:28 -0400 Subject: [PATCH] rclone fix --- scripts/rclone_post_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rclone_post_install.sh b/scripts/rclone_post_install.sh index 36ad552..bf6f9ba 100644 --- a/scripts/rclone_post_install.sh +++ b/scripts/rclone_post_install.sh @@ -33,7 +33,7 @@ if systemctl --user is-active --quiet rclone_ftp_mount.service; then echo "Rclone service is already running." else echo "Starting the rclone service." - systemctl start rclone_ftp_mount.service || { echo "Failed to start the service"; exit 1; } + systemctl --user start rclone_ftp_mount.service || { echo "Failed to start the service"; exit 1; } fi echo "Post-installation steps for rclone completed successfully."