1
2
3
4
5
6
7
8
9
10
11 | #!/bin/bash rsync --recursive --times --links --hard-links \ --stats \ --exclude "Packages*" --exclude "Sources*" \ --exclude "Release*" --exclude "InRelease" \ --exclude "Translation*" --exclude "Index" \ rsync://archive.ubuntu.com/ubuntu /srv/mirror/ubuntu rsync --recursive --times --links --hard-links \ --stats --delete --delete-after \ rsync://archive.ubuntu.com/ubuntu /srv/mirror/ubuntu |