mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 11:58:44 +08:00
9 lines
461 B
Bash
9 lines
461 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "$(date) - Compare remote version and local version." | tee -a /var/log/supervisord.log
|
||
|
|
||
|
echo "$(date) - Download remote packages and replace local data." | tee -a /var/log/supervisord.log
|
||
|
bash /websoft9/script/update_zip.sh --package_name "media-latest.zip" --sync_to "/websoft9/media"
|
||
|
bash /websoft9/script/update_zip.sh --package_name "library-latest.zip" --sync_to "/websoft9/library"
|
||
|
|
||
|
echo "$(date) - Success to update library and media."
|