[options] ################################################################################ # Additional arguments to aria2c. These will be appended to the internal list of # default arguments, replacing some of them when appropriate. The format used is # the same as in aria2c configuration files, e.g. "lowest-speed-limit=10K" # Options of immediate interest are "lowest-speed-limit", which can be used to # filter slow mirrors while the download is in progress, and # "max-download-limit", to limit download speed. # Options which are required by Powerpill will be ignored. Beyond that, # Powerpill does not check the sanity of the arguments given. # Consult aria2c's documentation for a full list of available options and # information about what they do. Aria2Args = allow-overwrite=true continue file-allocation=none ftp-pasv=true max-concurrent-downloads=45 max-tries=2 metalink-enable-unique-protocol=false metalink-servers=45 summary-interval=0 timeout=5 file-allocation=none ################################################################################ ################################################################################ # The path to the aria2c binary. Aria2Bin = /usr/bin/aria2c ################################################################################ ################################################################################ # The LWP user-agent timeout, in seconds. This affects the timeout of internal # network connections and is unrelated to Aria2 settings. LWPTimeout = 10 ################################################################################ ################################################################################ # Powerpill output will be logged to this path if it is given. # Log = /var/log/powerpill.log ################################################################################ ################################################################################ # Cache database file lookups in memory to enable faster subsequent lookups. # This will greatly speed up longer operations in most cases at the cost of a # larger memory footprint. # Memoize ################################################################################ ################################################################################ # Suppress colored output. # NoColor ################################################################################ ################################################################################ # The path to the pacman binary or an equivalent, such as pacman-color. PacmanBin = /usr/bin/pacman-color ################################################################################ ################################################################################ # Specify a different pacman configuration file to use. PacmanConfig = /etc/pacman.conf ################################################################################ ################################################################################ # Pass the "--noconfirm" flag to Pacman to bypass installation confirmation. # This is potentially dangerous and not recommended unless you really know what # you're doing. If you use this option, make sure that you at least review the # messages afterwards. # PacmanNoconfirm ################################################################################ ################################################################################ # Specify PkgD servers to query for packages before using external mirrors. # PkgD = [address:port] ################################################################################ ################################################################################ # Use the Rebase module to update the sync database. See the Rebase # documentation for more information. # Rebase ################################################################################ ################################################################################ # Enable retrieval of mirrors from the MirrorStatus webpage during a sync # operation. This uses the Reflector module internally and accepts the same # arguments that Reflector does. See the Reflector documentation for more # information. # There is absolutely no reason to pass any of the ranking options with this # command as the order of the servers is completely irrelevant. # Reflect = -l 45 ################################################################################ ################################################################################ # The number of times that a failed download should be retried when run # automatically. RetryLimit = 3 ################################################################################ ################################################################################ # The minimum size, in MB (not MiB), that a file must be before it is split for # segmented downloading. SplitSize = 5 ################################################################################ ################################################################################ # Configures threading. 0 disables threads, a positive integer limits the number # of threads, and a negative integer will let the application use threads # aggressively, which is often slower than a limited number of threads due to # overhead associated with each thread. Threads = 10 ################################################################################