add sliding sync servie

This commit is contained in:
LuKe Tidd 2024-02-07 18:17:04 -05:00
parent f063380ec2
commit bfccb1d4a3
Signed by: luke
GPG Key ID: 75D6600BEF4E8E8F

View File

@ -19,7 +19,7 @@ import sys
import time
supported_services = [
'git', 'plex', 'jellyfin', 'photoprism', 'nextcloud', 'read', 'www', 'chat']
'git', 'plex', 'jellyfin', 'photoprism', 'nextcloud', 'read', 'www', 'chat', 'sync']
restart_delay = {
'plex': 10
@ -35,6 +35,7 @@ users = {
'git': 'gitea',
'read': 'http',
'chat': 'synapse',
'sync': 'syncv3',
}
# systemd service names that don't match the service name
@ -45,6 +46,7 @@ systemd_services = {
'read': 'kavita',
'nextcloud': 'php-fpm',
'chat': 'synapse',
'sync': 'sliding-sync',
}