Subversion Repositories SvarDOS

Rev

Rev 177 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
164 mv_fox 1
#!/bin/sh
2
#
176 mateuszvis 3
# SvarDOS build script
4
# http://svardos.osdn.io
5
# Copyright (C) 2016-2021 Mateusz Viste
164 mv_fox 6
#
7
# Synchronization of ISO files, website and repositories towards sourceforge.
8
#
9
 
180 mateuszvis 10
set -e
164 mv_fox 11
 
180 mateuszvis 12
# sync ISO files to osdn storage servers
13
rsync -a --progress iso mateuszviste@storage.osdn.net:/storage/groups/s/sv/svardos/
14
 
15
# sync packages (with sources)
16
rsync -a --progress --delete packages mateuszviste@storage.osdn.net:/storage/groups/s/sv/svardos/
17
 
164 mv_fox 18
# sync the website (with repositories)
177 mateuszvis 19
rsync -rtDOvz --delete --progress website/ mateuszviste@shell.osdn.net:/home/groups/s/sv/svardos/htdocs/
176 mateuszvis 20