]> piware.de Git - bin.git/blob - ubuntu-mirror
ubuntu-mirror: ingore uninteresting kernels
[bin.git] / ubuntu-mirror
1 #!/bin/sh -e
2 debmirror --dist hoary,hoary-updates,hoary-security,breezy,breezy-updates,breezy-security,dapper,dapper-updates,dapper-security --section main,restricted --arch none --source --progress --nocleanup --method http --ignore-release-gpg --host archive.ubuntu.com --exclude-deb-section translation --exclude 'openoffice.*amd.*tar.gz' --exclude 'ia32-libs*' --root ubuntu /mirror
3
4 debmirror --dist dapper,dapper-updates,dapper-security --section main,restricted --arch i386 --no-source --progress --nocleanup --method http --ignore-release-gpg --host security.ubuntu.com --exclude-deb-section translation --exclude 'linux-(image|headers|source|patch|doc).*\.deb' --exclude '-dbg_.*\.deb' --root ubuntu /mirror
5 debmirror --dist breezy,breezy-updates,dapper,dapper-updates --section main,restricted --arch amd64 --no-source --progress --nocleanup --method http --ignore-release-gpg --host de.archive.ubuntu.com --exclude-deb-section translation --exclude 'linux-(image|headers|tree|source|patch|doc)[^/]*\.deb' --exclude 'ia32-libs*' --exclude '-dbg_.*\.deb' --root ubuntu /mirror
6 debmirror --dist breezy-security,dapper-security --section main,restricted --arch amd64 --no-source --progress --nocleanup --method http --ignore-release-gpg --host security.ubuntu.com --exclude-deb-section translation --exclude 'linux-(tree|source|patch|doc)[^/]*\.deb' --exclude 'linux.*(k8|xeon|server)' --exclude 'linux.*(9\.23|25\.43|26\.47)' --exclude 'ia32-libs*' --exclude '-dbg_.*\.deb' --root ubuntu /mirror
7
8 cat <<EOF | python
9 import sys
10 sys.path.append('/home/martin/ubuntu/ddeb-retriever/')
11 import archive_tools
12
13 archive_tools.archive_cleanup('/mirror')
14 EOF