2023-04-16 16:05:37 +05:30
|
|
|
#!/bin/bash
|
|
|
|
RSYNC_ARGS='--recursive --copy-links --copy-dirlinks --perms --xattrs --times --delete --verbose --compress --compress-choice=zstd --mkpath --cvs-exclude --human-readable --partial --progress'
|
|
|
|
# India Node
|
2023-07-30 13:59:04 +05:30
|
|
|
rsync ${RSYNC_ARGS} /var/cdn/ cdn@in.vpn.projectsegfau.lt:/var/cdn
|
2023-04-16 16:05:37 +05:30
|
|
|
# US Node
|
2023-07-30 13:59:04 +05:30
|
|
|
rsync ${RSYNC_ARGS} /var/cdn/ cdn@us.vpn.projectsegfau.lt:/var/cdn
|