mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
10 lines
271 B
Bash
Executable File
10 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
echo "Update index: Files"
|
|
source ${__dir}/sist2-update-files.sh
|
|
echo "Update index: Nextcloud"
|
|
source ${__dir}/sist2-update-nextcloud.sh
|
|
echo "Done. Restarting sist2."
|
|
docker restart sist2-sist2-1
|