/etc/podracer.conf is in podracer 1.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | ## Sample podracer.conf file
## This file should be modified if necessary and placed either in /etc or in
## ~/.podracer
## Settings in ~/.podracer/podracer.conf override system-wide settings. Defaults
## are shown in this sample file.
##
## Special variables:
## $progname - The name of this program
## $version - Program version
## $progdir - User-specific configuration and subscription files
# poddir is the directory where you want podcasts to be saved
# Directory names may be created dynamically based on time, date and many other
# possibilities. Directory names based on feeds are listed in the subscriptions
# file.
#poddir=$HOME/podcasts/$(date +%Y-%m-%d)
# incoming is the directory where incoming podcasts are saved before completion
#incoming=$progdir/part
# Subscription file - this holds a list of RSS feeds for podcasts
#subscriptions=$progdir/subscriptions
# The location of the sample subscription file that will be copied to a user's
# directory when running Podracer for the first time
#sample=/usr/share/$progname/sample.subscriptions
# A temporary place to store subscriptions. It allows for comments in the
# original subscription file.
#tempsub=$progdir/tempsub
# Set to the amount of time in seconds you would like to seed torrents, or if
# you don't have the upload bandwidth to seed, set to 0. I personally recommend
# seeding for at least an hour, (3600 seconds), which is the default.
#seedtime=3600
# Set maximum upload speed in kB/s when seeding - defaults to 0 (no limit)
#uploadrate=0
# Directory where torrents are stored
#torrentdir=$progdir/torrents
# The number of times Podracer will retry a download if an error occurs
#retries=2
# Set the minimum download speed in bytes per second for non-torrent downloads.
# Podracer will abort a download to prevent hangs if the connection drops below
# this speed for the time given below in the downloadtimeout option.
#minspeed=1
# set the time in seconds after which to abort a download if the connection
# speed drops below the above minspeed value.
#downloadtimeout=60
# Logfiles
#podcastlog=$progdir/podcast.log
#temppodcastlog=$progdir/temp.log
# Many podcasters check their logs to determine how many people use a podcast
# aggregator vs. directly downloading the shows. This setting will allow
# Podracer to be recognized as a true podcast agregator.
#longname="$progname v$version; $(uname -o); $(uname -m)"
# set to a filename to create an m3u playlist which will be saved in $poddir
# if uncommented and no filename is set, no m3u playlist is created.
#m3u=$(date +%Y-%m-%d)-podcasts.m3u
|