rclone mount gd: /root/googledrive \ | |
--vfs-cache-mode writes \ | |
--allow-other \ | |
--daemon |
[Unit] | |
Description=Rclone Mount Service | |
After=network-online.target | |
[Service] | |
Type=simple | |
User=root | |
Group=root | |
ExecStart=/usr/bin/rclone mount gd: /root/googledrive \ | |
--vfs-cache-mode writes \ | |
--allow-other \ | |
--uid=0 \ | |
--gid=0 \ | |
--umask=022 | |
ExecStop=/bin/fusermount -u /root/googledrive | |
Restart=always | |
RestartSec=10 | |
[Install] | |
WantedBy=default.target |