Skip to content
archive.conf 1.34 KiB
Newer Older
Seblu's avatar
Seblu committed
# vim:set sw=2 ts=2 ft=sh et:

# Archlinux remote rsync server
ARCHIVE_RSYNC='rsync://polymorf.fr/archlinux/'

# Archive local directory
Seblu's avatar
Seblu committed
ARCHIVE_DIR='/srv/archive'

# Archive User and Group
ARCHIVE_USER=archive
ARCHIVE_GROUP=archive

Seblu's avatar
Seblu committed
# Package extensions
PKGEXT='.pkg.tar.xz'
PKGSIG="$PKGEXT.sig"

Seblu's avatar
Seblu committed
# Umask used when archiving
UMASK=022

Seblu's avatar
Seblu committed
##############################################################################
#### Repositories
##############################################################################

# Enable repositories archiving
ARCHIVE_REPO=1

# Enable daily repo trees
# This offer daily, weekly, monthly, yearly snapshot trees
REPO_DAYLY=1

# Enable packages tree
# Create a dedicated tree with packages sorted by name
REPO_PACKAGES=1

# Enable repository package index
# Needed by agetpkg to list packages
REPO_PACKAGES_INDEX=1

# Search in all repository snapshop. This is slow.
# Better option is to let it to 0 to look only in the last snapshot
REPO_PACKAGES_FULL_SEARCH=0

Seblu's avatar
Seblu committed
# Max duration in second of the rsyncing of the daily snapshot
REPO_RSYNC_TIMEOUT=80000

Seblu's avatar
Seblu committed
##############################################################################
#### ISO
##############################################################################

# Enable ISO archiving
ARCHIVE_ISO=1
Seblu's avatar
Seblu committed
# Max duration in second of the rsyncing of the iso images
ISO_RSYNC_TIMEOUT=6400