blob: 00453cc6c8b359a82dfb243f83b6ef6d92e37a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# Some commonly useful addtional options that can be specified via the
# command line:
#
# --dry-run
# --progress
#
rsync -v -rlpt --copy-unsafe-links \
--prune-empty-dirs --delete-after --delete-excluded $* \
--include '*/' \
--include '*.tar.gz' \
--include 'packages' \
--include 'repositories' \
--include 'signature' \
--exclude '*' \
1/build2.org/ build2.org:/var/pkg/1/
|