7 lines
232 B
Bash
7 lines
232 B
Bash
#!/bin/sh
|
|
if [ "$1" = "reload" ]; then
|
|
rc-service immich_redis.service restart
|
|
rc-service immich_postgres.service restart
|
|
rc-service immich_machine_learning.service restart
|
|
rc-service immich_server.service restart
|
|
fi |